[wtr-general] Re: Running watir tests simultaneously on different browsers

2013-12-05 Thread Jason
Your question is on managing test executions and cross browser testing. Managing test execution is better handled by Continuous Integration, which is a must for serious test automation attempts. (Check out Lisa Cripin's blog on this topic:

[wtr-general] getting fixnum error for :index in webdriver

2013-12-05 Thread Bhavesh
Hi I just upgraded to watir webdriver. Using ruby 193. Im using this expression to click on third refresh button in my page : $ie.span(:class = x-btn-icon refresh, :index = 3).click But then it shows me error as : failed expected Fixnum, got 3:String this use to work with my earlier

Re: [wtr-general] getting fixnum error for :index in webdriver

2013-12-05 Thread Joseph Fleck
Hi, Remove quotes. $ie.span(:class = x-btn-icon refresh, :index = 3).click Joe Bhavesh bhavesh1_sha...@yahoo.com wrote: Hi I just upgraded to watir webdriver. Using ruby 193. Im using this expression to click on third refresh button in my page : $ie.span(:class = x-btn-icon refresh,

[wtr-general] Re: Help for mysql connect and security warning in internet explorer ie8.

2013-12-05 Thread Super Kevy
And you did gem install mysql? On Wednesday, December 4, 2013 2:33:59 AM UTC-6, Bhavesh wrote: Hi, I have ruby 193 installed and have following gems on my machine : *** LOCAL GEMS *** archive-tar-minitar (0.5.2) bigdecimal (1.1.0) childprocess (0.3.9) columnize (0.3.6)

[wtr-general] Re: getting fixnum error for :index in webdriver

2013-12-05 Thread Dan
You're passing a string instead of a number. Change $ie.span(:class = x-btn-icon refresh, :index = 3).click to $ie.span(:class = x-btn-icon refresh, :index = 3).click Dan On Thursday, December 5, 2013 4:07:26 AM UTC-5, Bhavesh wrote: Hi I just upgraded to watir webdriver. Using

[wtr-general] Run the Same Test in Multiple Browsers - Watir Webdriver

2013-12-05 Thread Ankur Bansal
Hello, Do any one knows how to run one test in multiple Browsers ( firefox, chrome, IE, etc. ) at the same time using Watir Webdriver. . I am using selenium Grid to run my tests in parallel. Thanks -- -- Before posting, please read http://watir.com/support. In short: search before you

[wtr-general] Re: Run the Same Test in Multiple Browsers - Watir Webdriver

2013-12-05 Thread Jason
In fact, to verify tests against multiple browsers, don't have to run one test the same time for 3 browsers (can be done, though). Besides maintainability, the other test automation challenge is long execution time (Google average build time: 4 minutes,

Re: [wtr-general] Run the Same Test in Multiple Browsers - Watir Webdriver

2013-12-05 Thread Pallavi
You can use Watir Grid to run multiple browsers in parallel Sent from my iPhone On 05-Dec-2013, at 10:20 pm, Ankur Bansal an...@renttherunway.com wrote: Hello, Do any one knows how to run one test in multiple Browsers ( firefox, chrome, IE, etc. ) at the same time using Watir