Load `chromedriver-helper.rb`

The bin shim provides by `chromedriver-helper` gem has renamed to
`chromedriver-helper` since 2.0.
https://github.com/flavorjones/chromedriver-helper/pull/58

Since bin of new name is set to driver path in
`lib/chromedriver-helper.rb`, need to load it.
This commit is contained in:
yuuji.yaginuma 2018-09-16 09:18:59 +09:00
parent a569a27fc7
commit 8059c77404
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
require "qunit/selenium/test_runner"
require "chromedriver/helper"
require "chromedriver-helper"
driver_options = Selenium::WebDriver::Chrome::Options.new
driver_options.add_argument("--headless")