[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread Angrez Singh
After enabling it do this: Start - run - [firefox installation directory]\firefox.exe -jssh and then Start - run - cmd - type telnet localhost 9997 Let me know the results. - Angrez On Thu, Jul 9, 2009 at 11:03 AM, aparna aparna.m...@gmail.com wrote: Hi Angrez, I have enabled the telnet

[wtr-general] Re: Documentation about the select_list is wrong?

2009-07-09 Thread Angrez Singh
Can you post this in entire different thread? On Tue, Jul 7, 2009 at 12:46 PM, khaja shaik khaja.sh...@gmail.com wrote: Hi all, i have installed jss and ran the watir script again. but i got this error ruby news1.rb

[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread aparna
Angrez, When i did this Start - run - [firefox installation directory] \firefox.exe -jssh, firefox home page is getting opened. On doing this Start - run - cmd - type telnet localhost 9997, am getting the following - connecting to localhost...could not open connection to the host, on port 9997:

[wtr-general] Re: Using watir can we check performance of an application

2009-07-09 Thread JArkelen
The PC you run Watir on will be the bottleneck, because Internet Explorer consumes a lot of RAM. On Jul 9, 3:29 am, takanobu watanabe rreedd...@gmail.com wrote: Why don't you try to use Jmeter ?http://jakarta.apache.org/jmeter/ Hope it help. tknv/ On Thu, Jul 9, 2009 at 12:18 AM,

[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread Angrez Singh
Going back to the installation document here from where you downloaded the XPI: http://wiki.openqa.org/display/WTR/FireWatir+Installation#FireWatirInstallation-InstalltheJSSHFirefoxExtension In step 2 its mentioned that you need to install Redistributed package for VS 2005 SP1. Did you installed

[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread khaja shaik
Hi, I am also getting same error on windows xp. after running the command i got error saying that Connection failed Thanks, Khaja shariff On Thu, Jul 9, 2009 at 11:51 AM, Angrez Singh ang...@gmail.com wrote: After enabling it do this: Start - run - [firefox installation

[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread Angrez Singh
Can everybody see if they did all the steps mentioned in the installation document? If they are still facing the problem then we can take it from there Thanks, Angrez On Thu, Jul 9, 2009 at 2:44 PM, khaja shaik khaja.sh...@gmail.com wrote: Hi, I am also getting same error on windows xp.

[wtr-general] Re: Issue with Select List

2009-07-09 Thread Ravinder Singroha
Hi Bhaskar We tried almost all set of combination like onchange,onblur n all events but its not working. is there another way ? Thanks Regards Ravinder Singroha On Jul 9, 3:26 am, Powerglide bhaskar.sundar...@gmail.com wrote: Hi,    Did you try issuing onblur or onchange    

[wtr-general] Re: .set method is not working for firefox

2009-07-09 Thread kiran yajamanyam
Hi Friends, I have struck up with this issue. I have re-installed my ruby setup and still I am facing problem with .Set method. Is there any work around for this? Please help me in this. Thanks and Regards, Kiran Y On Mon, Jun 8, 2009 at 3:54 PM, kiran yajamanyam

[wtr-general] Re: .set method is not working for firefox

2009-07-09 Thread Angrez Singh
following code works fine for me both in watir/firewatir: require 'watir' include Watir ff = FireWatir::Firefox.new ff.goto(http://webmail.aol.in;) ff.text_field(:id, lgnId1).set(angrez) ff.text_field(:id, pwdId1).set(singh) ff.close Can you try this code on your machine? Also can you try using

[wtr-general] Watir work with java editor

2009-07-09 Thread khaja shaik
*Watir work with java editor* HI all, i have to automate : to enter the text in java editor (HTML editor) is it possible with watir Thanks, Khaja shariff --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir

[wtr-general] Re: getting error while running watir script on firefox 3.0.11

2009-07-09 Thread aparna
Hi Angrez, finally its working fine for me... Thanks Regards, Aparna On Jul 9, 2:48 pm, Angrez Singh ang...@gmail.com wrote: Can everybody see if they did all the steps mentioned in the installation document? If they are still facing the problem then we can take it from there Thanks,

[wtr-general] Re: Firefox 3.5 compatible with FireWatir?

2009-07-09 Thread Al B.
Hi Angrez, I tried the steps in your July 8 post, using the XPI for Windows that you posted on July 3, and got the following results when I tried to run Firewatir: C:/Ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/ firefox.rb:271:in `set_defaults': Unable to connect to machine :

[wtr-general] Anyway to add a link or button to a page (dom insert) then assign it some jscript

2009-07-09 Thread Super Kevy
Hey gang, I've found the stuff on excuting javascript via watir and the executeScript method but the vars needed to trigger the function I want has some funky dynamic data comming into it. The function used to be available as an onlick of button that was removed. It there a way to add a

[wtr-general] Rasta - Passing Values from an xls file

2009-07-09 Thread Kevin Scott
Good Afternoon! Has anyone run into the issue where they cannot pass values from an xls file using rasta via a watir script? I have successfully run the example from the website - http://rasta.rubyforge.org/ My issue is that I cannot pass a value from the following code: require 'watir'

[wtr-general] Watir + Cruise Control

2009-07-09 Thread Dylan
Does anyone know of a good tutorial/step-by-step instructions for how to integrate watir/ruby into a cruise control build cycle. I have 1 xml output file (from ci_reporter) and I want my script to run after the build and then integrate the xml results into the cruise control output. Thanks!

[wtr-general] Re: Rasta - Passing Values from an xls file

2009-07-09 Thread Kevin Scott
Thank you Hugh! Your help is very much appreciated... That is exactly what the issue was. I moved the code into the method and I am good to go. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group.

[wtr-general] Re: Rasta - Passing Values from an xls file

2009-07-09 Thread Hugh McGowan
before_each will execute before each record in the page (in your case each row) so it's more for any setup you want to do and Rasta at that point has not set those class attributes. Try something like this: def is_displaying_1?() @ie.text_field(:id,

[wtr-general] Re: Watir + Cruise Control

2009-07-09 Thread marekj
I use Hudson. has a ruby and rake plugin. I use custom workspace for all jobs. The test code does not need to be checked out ever time. jobs triggered by rake tasks calling ci_reporter as dependency (the Test::Unit version) and task body just calls TestRunner.run TestCaseName TestCases are