LoginSignup
8

More than 1 year has passed since last update.

HerokuでRubyとSeleniumを動かすための設定

Last updated at Posted at 2019-02-17

HerokuでRubyとSeleniumを動かすための設定

次のようにGemfileにgemを追加して下さい。

Gemfile
gem 'selenium-webdriver'
gem 'chromedriver-helper'

そして、ターミナルで次のコマンドを実行します。

heroku buildpacks:add https://github.com/heroku/heroku-buildpack-google-chrome
heroku buildpacks:add https://github.com/heroku/heroku-buildpack-chromedriver
heroku config:set GOOGLE_CHROME_BIN=/app/.apt/opt/google/chrome/chrome
heroku config:set GOOGLE_CHROME_SHIM=/app/.apt/opt/google/chrome/chrome

これで設定は完了です。

終わりに

私は現在、Web3のサービスの開発をしています。詳しくはこちらの記事をご覧下さい。
無料でイーサリアムが当たる、Web3時代の寄付サイトを作った話

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8