From 3635184182a6c5a56e3a57ddfaedb942e66703d9 Mon Sep 17 00:00:00 2001 From: Ben Pennell Date: Fri, 28 Jul 2023 13:42:42 -0400 Subject: [PATCH] Fix chromdriver verison --- spec/spec_helper.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 616d0ec96..3f4a2a6f9 100755 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -39,6 +39,11 @@ end require 'capybara/rspec' +# Temporarily fix chromedriver version, as newer versions are not accessible from the original +# download path. We could revisit this when we are on ruby 3 and there may be appropriate +# versions of selenium available +require "webdrivers" +Webdrivers::Chromedriver.required_version = '114.0.5735.90' require 'webmock/rspec' require 'shoulda/matchers' Shoulda::Matchers.configure do |config|