How to setup ChromeDriver 74 with Chrome 74 for Travis?

Can anyone from the TravisCI team comment? Would it be possible to make the addons: chrome: stable install both Google Chrome and the matching Chromedriver version? The matching version can be fetched from: https://chromedriver.storage.googleapis.com/index.html (unfortunately there’s no symlink to ‘stable’)

I came up with this solution (using the webdrivers gem, which replaced the chromedriver-helper gem):

before_script:
  - bundle exec rails runner "Webdrivers::Chromedriver.update"

addons:
  chrome: stable
4 Likes