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

Merge pull request #2520 from JunichiIto/allow-selenium-4-1-or-higher

Use adjusted driver registrations with selenium-webdriver 4.0 or higher
This commit is contained in:
Thomas Walpole 2021-12-30 14:48:08 -08:00 committed by GitHub
commit a958240ef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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