Skip to content

Commit 92be9af

Browse files
authored
Merge pull request rails#55005 from yahonda/selenium_webdriver_4_32_0
Support selenium-webdriver 4.32.0
2 parents e0bfbb2 + 8819ab5 commit 92be9af

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
@@ -574,7 +574,7 @@ GEM
574574
sass-embedded (1.83.4-x86_64-linux-musl)
575575
google-protobuf (~> 4.29)
576576
securerandom (0.4.1)
577-
selenium-webdriver (4.29.1)
577+
selenium-webdriver (4.32.0)
578578
base64 (~> 0.2)
579579
logger (~> 1.4)
580580
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
@@ -121,7 +121,7 @@ class DriverTest < ActiveSupport::TestCase
121121
expected = {
122122
"moz:firefoxOptions" => {
123123
"args" => ["--host=127.0.0.1"],
124-
"prefs" => { "remote.active-protocols" => 3, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
124+
"prefs" => { "remote.active-protocols" => 1, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
125125
},
126126
"browserName" => "firefox"
127127
}
@@ -138,7 +138,7 @@ class DriverTest < ActiveSupport::TestCase
138138
expected = {
139139
"moz:firefoxOptions" => {
140140
"args" => ["-headless", "--host=127.0.0.1"],
141-
"prefs" => { "remote.active-protocols" => 3, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
141+
"prefs" => { "remote.active-protocols" => 1, "browser.startup.homepage" => "http://www.seleniumhq.com/" }
142142
},
143143
"browserName" => "firefox"
144144
}

0 commit comments

Comments
 (0)