Skip to content

Commit 3e0a475

Browse files
committed
Workaround regression in selenium-webdriver 4.29.0
Skip this version as it breaks at least with Ruby 3.1 on Debian 12. A PR was opened upstream to fix the issue: SeleniumHQ/selenium#15315
1 parent 77ae351 commit 3e0a475

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ group :test do
9393
gem "capybara-screenshot"
9494
gem "cucumber-rails", require: false
9595
gem "factory_bot_rails"
96-
gem "selenium-webdriver"
96+
gem "selenium-webdriver", "!= 4.29.0"
9797
gem "simplecov"
9898
gem "timecop"
9999
end

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ GEM
381381
sprockets-rails
382382
tilt
383383
securerandom (0.4.1)
384-
selenium-webdriver (4.29.0)
384+
selenium-webdriver (4.28.0)
385385
base64 (~> 0.2)
386386
logger (~> 1.4)
387387
rexml (~> 3.2, >= 3.2.5)
@@ -471,7 +471,7 @@ DEPENDENCIES
471471
rubocop-rails_config
472472
rubocop-rspec
473473
sassc-rails
474-
selenium-webdriver
474+
selenium-webdriver (!= 4.29.0)
475475
simple_form
476476
simplecov
477477
sprockets-rails

0 commit comments

Comments
 (0)