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

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 无法连接到chromedriver前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我用水豚硒测试我的轨道项目.当我执行测试脚本时,它有这样的错误
Selenium::WebDriver::Error::WebDriverError:
   Could not find Firefox binary (os=macosx). Make sure Firefox is installed or set the path manually with Selenium::WebDriver::Firefox::Binary.path=

我google how to use Google Chrome as the testing browser instead of Firefox

但它发生其他错误喜欢

Selenium::WebDriver::Error::WebDriverError:
   unable to connect to chromedriver http://127.0.0.1:9515

解决方法

我有完全相同的问题.对我来说有用的是使用“chromedriver-helper”宝石.我的gemfile的一部分看起来像这样:
group :development,:test do
  gem 'rspec-rails'
  gem 'capybara'
  gem 'selenium-webdriver'
  gem 'chromedriver-helper'
end
原文链接:https://www.f2er.com/ruby/273996.html

猜你在找的Ruby相关文章