[wtr-general] Re: Working on Chrome watir

2009-11-08 Thread Shamiq
For those with the CreateProcess() error, be sure to add the Chrome directory to your environment PATH variable then quit all instances of the command prompt. A quick test to see if this worked as intended is to type chrome in the prompt and see if it launches Chrome. -Shamiq On Nov 6, 6:03 am,

[wtr-general] Re: Working on Chrome watir

2009-11-08 Thread sai
Jarib, Aidy, I have started working on Watir API for webdriver for Chrome. It may take a few more weeks to see something substantial. But its a start :) Regards. Sai On Nov 8, 9:22 am, Jari Bakken jari.bak...@gmail.com wrote: On Sat, Nov 7, 2009 at 12:14 PM, aidy lewis

[wtr-general] Re: Working on Chrome watir

2009-11-07 Thread sai
Sorry for the delay guys... I am still working on the fix. Got delayed in setting up the environment in my new box. Will post soon on updates Regards, Sai On Nov 6, 8:06 pm, Mark Mckim mark.mc...@gmail.com wrote: Ah right ok, that's brilliant. Thanks for your very speedy response. I'll check

[wtr-general] Re: Working on Chrome watir

2009-11-07 Thread aidy lewis
Sai, Jarib, Would it not be an idea to put Chrome and Firewatir on top of WebDriver, to avoid duplication of browser access methods with all that entails? Aidy 2009/11/7 sai saidesertrose2...@gmail.com: Sorry for the delay guys... I am still working on the fix. Got delayed in setting up

[wtr-general] Re: Working on Chrome watir

2009-11-07 Thread Jari Bakken
On Sat, Nov 7, 2009 at 12:14 PM, aidy lewis aidy.le...@googlemail.com wrote: Sai, Jarib, Would it not be an idea to put Chrome and Firewatir on top of WebDriver, to avoid duplication of browser access methods with all that entails? Aidy Indeed - as soon as we have an implementation of

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread Željko Filipin
On Wed, Nov 4, 2009 at 5:07 AM, shradha_Dalvi kshradh...@gmail.com wrote: The system cannot find the file specified.: CreateProcee() failed: (Processerror) Uninstall chrome_watir 1.5.0, install chromewatir 1.5.1 and let us know if you still get the error. gem install chromewatir Željko --

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread shradha_Dalvi
Hi, after installing chromewatir 1.5.1,it is working fine. But another problem raises. For the following test script:- require chrome_watir include ChromeWatir::Exceptions include ChromeWatir browser = ChromeWatir::Browser.new browser.goto 'http://www.gmail.com' sleep 10 p

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread Željko Filipin
On Wed, Nov 4, 2009 at 10:51 AM, shradha_Dalvi kshradh...@gmail.com wrote: include ChromeWatir::Exceptions include ChromeWatir Why are you using this? You should probably delete it. It is not recognizing the text_field object Please post some relevant HTML. Željko

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread shradha_Dalvi
I have read some information given on http://wiki.openqa.org/display/ WTR/ChromeWatir. According to it the I am not able to execute the test script given on the said link.It is as follows:- require chrome_watir browser = ChromeWatir::Browser.new browser.goto 'http://www.google.com'

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread Željko Filipin
On Wed, Nov 4, 2009 at 11:32 AM, shradha_Dalvi kshradh...@gmail.com wrote: According to it the I am not able to execute the test script given on the said link. What is the problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread shradha_Dalvi
Followinf test script open the google browser but not clicking on the link Advance Search. require chrome_watir browser = ChromeWatir::Browser.new browser.goto 'http://www.google.com' browser.link(:text, Advanced Search).click browser.text_field(:id, as_oq0).set watir browser.text_field(:id,

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread SMF SMF
Hi, p browser.text_field(:name,q).set Shraddha why is the letter p in your script? On Wed, Nov 4, 2009 at 3:21 PM, shradha_Dalvi kshradh...@gmail.com wrote: Hi, after installing chromewatir 1.5.1,it is working fine. But another problem raises. For the following test script:- require

[wtr-general] Re: Working on Chrome watir

2009-11-04 Thread shradha_Dalvi
for printing purpose.We are using Scite editor to run ruby scripts. On Nov 4, 4:02 pm, SMF SMF shaikm.fi...@gmail.com wrote: Hi, p browser.text_field(:name,q).set Shraddha why is the letter p in your script? On Wed, Nov 4, 2009 at 3:21 PM, shradha_Dalvi kshradh...@gmail.com wrote: Hi,