【发布时间】:2018-06-04 21:10:30
【问题描述】:
我有一个 Ruby 代码可以做到这一点:
browser = Watir::Browser.new(:chrome, switches: switches, headless: true)
browser.goto(....)
当我在 Heroku 上运行代码时,我得到了
Selenium::WebDriver::Error::WebDriverError: Unable to find chromedriver. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at https://github
.com/SeleniumHQ/selenium/wiki/ChromeDriver.
我看过像Heroku: unable to connect to chromedriver 127.0.0.1:9515 when using Watir/Selenium 这样的帖子 但我不知道如何正确配置构建包。 我试过了:
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-google-chrome
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-chromedriver
但是当我尝试将更改推送到 Heroku 时,我得到:
Error Plugin: chromedriver: files attribute must be specified in /Users/leticia/.local/share/heroku/node_modules/chromedriver/package.json
谁能一步一步告诉我如何设置必要的构建包以使 Watir gem 在 Heroku 中工作?
谢谢
更新:
我需要“webdrivers”,现在我得到了Selenium::WebDriver::Error::WebDriverError: unable to connect to chromedriver 127.0.0.1:9515。
我尝试将环境变量配置为:
ENV['GOOGLE_CHROME_BIN'] = "/app/.apt/opt/google/chrome/chrome"
ENV['GOOGLE_CHROME_SHIM'] = "/app/.apt/usr/bin/google-chrome-stable"
然后这样做:
options = Selenium::WebDriver::Chrome::Options.new
chrome_bin_path = ENV.fetch('GOOGLE_CHROME_SHIM', nil)
options.binary = chrome_bin_path if chrome_bin_path
options.add_argument('--headless')
driver = Selenium::WebDriver.for :chrome, options: options
但我仍然收到最后一行的错误。
更新 2:
我搬到了 Dokku 而不是 Heroku,我得到了同样的错误。 Selenium::WebDriver::Error::WebDriverError: unable to connect to chromedriver 127.0.0.1:9515.
【问题讨论】:
标签: ruby-on-rails heroku webdriver buildpack