Skip to content

Commit d0f43c3

Browse files
committed
Merge pull request rails#55005 from yahonda/selenium_webdriver_4_32_0
Support selenium-webdriver 4.32.0
1 parent 30f6b28 commit d0f43c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ GEM
511511
sdoc (2.6.1)
512512
rdoc (>= 5.0)
513513
securerandom (0.3.1)
514-
selenium-webdriver (4.22.0)
514+
selenium-webdriver (4.32.0)
515515
base64 (~> 0.2)
516516
logger (~> 1.4)
517517
rexml (~> 3.2, >= 3.2.5)

actionpack/test/dispatch/system_testing/driver_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class DriverTest < ActiveSupport::TestCase
120120
expected = {
121121
"moz:firefoxOptions" => {
122122
"args" => ["--host=127.0.0.1"],
123-
"prefs" => { "remote.active-protocols" => 3, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
123+
"prefs" => { "remote.active-protocols" => 1, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
124124
},
125125
"browserName" => "firefox"
126126
}
@@ -137,7 +137,7 @@ class DriverTest < ActiveSupport::TestCase
137137
expected = {
138138
"moz:firefoxOptions" => {
139139
"args" => ["-headless", "--host=127.0.0.1"],
140-
"prefs" => { "remote.active-protocols" => 3, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
140+
"prefs" => { "remote.active-protocols" => 1, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
141141
},
142142
"browserName" => "firefox"
143143
}

0 commit comments

Comments
 (0)