ruby-on-rails – 无法连接到Geckodriver

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 无法连接到Geckodriver前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用 Ruby on Rails运行Selenium的示例scirpt.我要用代理运行它.这是我的代码
require 'rubygems'
require 'bundler/setup'

# require your gems as usual
require "selenium-webdriver"

Selenium::WebDriver::Firefox.path = "/home/marc/Documents/firefox/firefox"
profile = Selenium::WebDriver::Firefox::Profile.new
proxy = Selenium::WebDriver::Proxy.new(:http => nil)
profile.proxy = proxy
driver = Selenium::WebDriver.for :firefox,:profile => profile
driver.navigate.to "http://google.com"

element = driver.find_element(:name,'q')
element.send_keys "Hello WebDriver!"
element.submit

puts driver.title

driver.quit

我收到以下错误

/home/marc/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/selenium-webdriver-3.0.0.beta3.1/lib/selenium/webdriver/common/service.rb:115:in `connect_until_stable': unable to connect to Mozilla geckodriver 127.0.0.1:4445 (Selenium::WebDriver::Error::WebDriverError)

有人能帮我吗…?我几个小时都在努力,找不到问题……真的不知道该怎么办.

环境:

Ubuntu 16.04 LTS,
Firefox 45.0,
rbenv 2.3.1

其他问题:有人知道Selenium Ruby on Rails的一些例子吗?我找不到真正的好东西…文档很差:(

解决方法

你有selenium-webdriver-3.0.0.beta3.1,仅适用于Firefox 48及更高版本(尚未正常工作).
回退到selenium-webdriver版本 2.53.4并再试一次.
原文链接:https://www.f2er.com/ruby/270849.html

猜你在找的Ruby相关文章