diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2019-03-24 16:05:30 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2019-03-24 16:05:30 -0500 |
commit | 2512f24ef40f4c678c8dc364cdcaff09d4d5a65d (patch) | |
tree | ab4378d3709582dfd8a3edf846578230c9621e17 /ci | |
parent | 4ec486145290efb4059b64e84a2bfd9e157bf787 (diff) | |
download | rails-2512f24ef40f4c678c8dc364cdcaff09d4d5a65d.tar.gz rails-2512f24ef40f4c678c8dc364cdcaff09d4d5a65d.tar.bz2 rails-2512f24ef40f4c678c8dc364cdcaff09d4d5a65d.zip |
Use webdrivers instead of chromedriver-helper for AV UJS tests
Diffstat (limited to 'ci')
-rw-r--r-- | ci/qunit-selenium-runner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/qunit-selenium-runner.rb b/ci/qunit-selenium-runner.rb index 1df6aedb36..b7013c258a 100644 --- a/ci/qunit-selenium-runner.rb +++ b/ci/qunit-selenium-runner.rb @@ -5,7 +5,7 @@ require "qunit/selenium/test_runner" if ARGV[1] driver = ::Selenium::WebDriver.for(:remote, url: ARGV[1], desired_capabilities: :chrome) else - require "chromedriver-helper" + require "webdrivers" driver_options = Selenium::WebDriver::Chrome::Options.new driver_options.add_argument("--headless") |