我和我的firefox一起工作过selenium,但是今天早上当我运行我的测试时我得到了同样的错误。我更新了当前版本的selenium-webdriver(2.38),但我仍然有这个错误。
Selenium::WebDriver::Error::WebDriverError:
unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)
# /home/user/.rvm/gems/ruby-2.0.0-p195@taxand/gems/selenium-webdriver-2.38.0/lib/selenium/webdriver/firefox/launcher.rb:79:in `connect_until_stable'
也
我在我的其他项目中检查了它,我有2.35版本,它也在昨天工作 - 在那里它今天也不起作用; o
所以我认为这不是硒问题,但我的FF可能会被打破?但我也尝试使用自定义的firefox_path运行它到较旧的firefox版本,问题是相同的:<
有什么想法吗?
答案 0 :(得分:23)
我在更新Firefox 26后在Mac OS X Mavericks中发现了同样的问题。
我通过更新selenium-webdriver gem解决了这个问题
在你的gemfile中,用
替换你当前的selenium-webdriver gem行 gem "selenium-webdriver", "~> 2.38.0"
在您的控制台中,gem update selenium-webdriver
。
然后bundle install
。
尝试运行测试。