Re: [wtr-general] FireWatir still holding ActiveRecord 2.3 dependency? Breaking on my computer

2010-05-24 Thread Željko Filipin
On Sun, May 23, 2010 at 4:45 AM, Tyler tgan...@gmail.com wrote: I would love to use Firewatir but I don't want to try to manage multiple concurrent versions of rails in order to do so. You can drive Firefox with watir-webdriver until this is fixed:

[wtr-general] Text field

2010-05-24 Thread Kinnu
Hi All, I am facing a problem specific to firefox(Firewatir) while running the -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to http://groups.google.com/group/watir-general To post:

[wtr-general] Re: Text field

2010-05-24 Thread Kinnu
I am sorry by mistake clicked on send button.Please delete this thread, Will post another one with my question On May 24, 3:56 pm, Kinnu kiranyajaman...@gmail.com wrote: Hi All, I am facing a problem  specific to firefox(Firewatir) while running the -- Before posting, please

[wtr-general] Not able to click Enter using SENDKEY

2010-05-24 Thread meaculpa
Hi All, I had a search field and I have to do a blank search. My code is : require'rubygems' require 'watir' require 'win32ole' $m_link = 'ww1.*.com' $browser = Watir::IE.start($m_link) $browser.text_field(:name, keywords).set('') $browser.send_keys({enter}) $browser.waitForIE but its not

Re: [wtr-general] Not able to click Enter using SENDKEY

2010-05-24 Thread Željko Filipin
On Mon, May 24, 2010 at 1:41 PM, meaculpa harismah...@gmail.com wrote: I had a search field and I have to do a blank search. If there is a search button, you can try clicking it: browser.button(how, what).click You could also submit a form that contains search text field: browser.form(how,

[wtr-general] Re: well at least it has an id.....

2010-05-24 Thread dave
no joy irb(main):033:0 browser.cell(:id = LOGOUT).click = 0.265 ...while i does not error outit has no affect in the IE browser...so i tried... irb(main):030:0 browser.cell(:id = LOGOUT).fire_event(MM_goToSubframe('MAIN IFRAME','window:../base/logout') tabindex='-1')

[wtr-general] Re: well at least it has an id.....

2010-05-24 Thread dave
bingo...thanx...i looked at some of the other posts todayand found... browser.link(:text,LOGOUT).click WORKEDthanx.againdave On May 24, 11:17 am, dave bitdo...@yahoo.com wrote: no joy irb(main):033:0 browser.cell(:id = LOGOUT).click = 0.265 ...while i does not error

Re: [wtr-general] how to click on the element with the id = logoutLink

2010-05-24 Thread Cristina
I am using firefox. Just try and not working. I am receiving the following err: Unable to locate element, using :text, Logout (Watir::Exceptio... On Sun, May 23, 2010 at 4:36 PM, Felipe Knorr Kuhn fkn...@gmail.com wrote: Hello, Cristina, have you tried $ie.link(:text, Logout).click

Re: [wtr-general] how to click on the element with the id = logoutLink

2010-05-24 Thread kiran yajamanyam
try with ie.link(:text=LogOut, :index=1).click() or ie.link(:text=LogOut, :index=2).click() or ie.link(:text=LogOut, :index=3).click() try with diff index values by trail and error or you can include parent of that link and try example ie.div(just example).link(:text, LogOut).click() Else

[wtr-general] Re: Not able to click Enter using SENDKEY

2010-05-24 Thread George
Do you have AutoIt installed? On May 24, 4:41 am, meaculpa harismah...@gmail.com wrote: Hi All, I had a search field and I have to do a blank search. My code is : require'rubygems' require 'watir' require 'win32ole' $m_link = 'ww1.*.com' $browser = Watir::IE.start($m_link)

[wtr-general] how do i select from ctrls?

2010-05-24 Thread dave
accessing and clicking on CTRLS that appear as select_lists how to click on the inner most sub-list... the select_list in this web page is based on ctrls with this xpath /html/body/ctrl/attrs/attr and... contains multiple sub-select lists the root is Materials attrs

Re: [wtr-general] Not able to click Enter using SENDKEY

2010-05-24 Thread Felipe Knorr Kuhn
From the Watir FAQ ( http://wiki.openqa.org/display/WTR/FAQ ) How do I fix a WIN32OLERuntimeError when I use AutoIt? In some cases, after you install Watir, the .dll file fails to get registered which gives an error similar to the following: Exception 'WIN32OLERuntimeError' at filename.rb:line#

[wtr-general] Re: click_no_wait, why so inconsistent?

2010-05-24 Thread cslumension
*high five* Don't know why, and hopefully you'll enlighten me, but browser.back, browser.forward before calling the click_no_wait method works like a champ so far. It would always stop at the second link, but my script is up to the 8th download now and still looking good. Thanks for the help,

[wtr-general] Re: how do i select from ctrls?

2010-05-24 Thread dave
if this helps... i was able to do: from :0irb(main):064:0 browser.text = Infor EAM\r\n\r\nTRAINING\r\n START CENTER MY ACCOUNT HELP ABOUT LOGOUT \r\ n\r\n\r\n MY ACCOUNT HELP ABOUT LOGOUT \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r \n\r\n \r\

Re: [wtr-general] how to click on the element with the id = logoutLink

2010-05-24 Thread Cristina
Reattached the script.I deleted the last line. On Mon, May 24, 2010 at 2:46 PM, Cristina cristina.toro...@gmail.comwrote: Hi, I attached the script and screen snapshot. You can run it. That is our email application and I would like to start automating the functional testing. I do not know

I found the problem!!Re: [wtr-general] how to click on the element with the id = logoutLink

2010-05-24 Thread Cristina
I found what the problem was. I was inside a frame. I fixed the issue. Please do not analyze that issue. Thanks a lot! Cristina On Mon, May 24, 2010 at 2:47 PM, Cristina cristina.toro...@gmail.comwrote: Reattached the script.I deleted the last line. On Mon, May 24, 2010 at 2:46 PM,

Re: [wtr-general] how to click on the element with the id = logoutLink

2010-05-24 Thread kiran yajamanyam
Hey Friend, Got the solution. Use browser.frame(:index,2).link(:id=logoutLink).click() this piece of code to click on Logout link, as this link is under a frame with index 2 it was unable to identify Logout link. Try and let me know if it works or not. On Tue, May 25, 2010 at 12:17 AM,

[wtr-general] Ruby Debugger for Netbeans issue

2010-05-24 Thread Prashant
Hello When I ran below command using visual studion command promot then I got the error failed to load and parse the manifes.The system cannot find the file specified. C:\ruby\lib\ruby\gems\1.8\gems\ruby-debug-base-0.10.3\extmt -manifest ruby_debu g.so.mainfest -outputresource:ruby_debug.so;2