1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Allow Selenium 4.1.0 or higher

This commit is contained in:
Junichi Ito 2021-12-31 07:35:20 +09:00
parent e704d00879
commit 7add1028e5

View file

@ -12,7 +12,7 @@ class Capybara::Selenium::Driver < Capybara::Driver::Base
clear_session_storage: nil
}.freeze
SPECIAL_OPTIONS = %i[browser clear_local_storage clear_session_storage timeout native_displayed].freeze
CAPS_VERSION = Gem::Requirement.new('~> 4.0.0.alpha6')
CAPS_VERSION = Gem::Requirement.new('>= 4.0.0.alpha6')
attr_reader :app, :options