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:
commit
a958240ef4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue