Reputation: 1
i have problem with watir-webdriver and Firefox 3.6, the cucumber is finished
1 scenario (1 passed)
4 steps (4 passed)
0m7.983s
rake aborted!
Timeout::Error
and after 3 minutes load the page when the cucumber say me Timeout::Error
the watir-webdriver version (0.6.4, 0.6.3) the selenium-webdriver version (2.32.1)
the code is
require "rubygems"
require 'watir-webdriver'
require 'selenium-webdriver'
$browser1 = Watir::Browser.new :firefox
$browser1.goto "url"
where are the problem ?
thanks !
Upvotes: 0
Views: 176
Reputation: 6660
Firefox 3.6 is obsolete. The latest stats place the market share of users still on this version at 0.58%
Is it worth your time to test against a browser platform that is used by such a small number of people?
The current version of opera has nearly three times the userbase.. The current version of Safari over five times the users..
Update to a modern version of firefox and test against what most firefox users will be running
Upvotes: 0