Skip to content

Commit 9aa34c5

Browse files
authored
Merge pull request #745 from lcreid/upgrade-selenium
Upgrade selenium
2 parents 17e4260 + 56e48d7 commit 9aa34c5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+11
-11
lines changed

.yarnrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# yarn lockfile v1
33

44

5-
lastUpdateCheck 1729300363924
5+
lastUpdateCheck 1741731093687

Gemfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ eval File.read(gems), binding, gems # rubocop: disable Security/Eval
33

44
require "#{__dir__}/lib/bootstrap_form/version"
55

6-
gem "rails", BootstrapForm::REQUIRED_RAILS_VERSION
7-
gem "sprockets-rails", require: "sprockets/railtie"
8-
96
gem "bigdecimal" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0")
107
gem "drb" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0")
118
gem "mutex_m" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0")
9+
gem "rails", BootstrapForm::REQUIRED_RAILS_VERSION
10+
gem "sprockets-rails", require: "sprockets/railtie"
1211
gem "sqlite3", "~> 1.4"

README.md

+1-1

compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ services:
2121
command: /bin/bash
2222

2323
selenium:
24-
# Try removing headless=old option when upgrading the version.
25-
image: selenium/standalone-chrome:129.0
24+
image: selenium/standalone-chrome:133.0
25+
shm_size: 2gb
2626
logging:
2727
driver: none
2828
stdin_open: true
@@ -32,3 +32,4 @@ services:
3232
ports:
3333
- '4444:4444'
3434
- '5900:5900'
35+
- '7900:7900'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-251 Bytes
-303 Bytes
-130 Bytes
-250 Bytes
-276 Bytes
-281 Bytes
-249 Bytes
-171 Bytes
-485 Bytes
-241 Bytes
-117 Bytes
-766 Bytes
-210 Bytes
-254 Bytes
-189 Bytes
-347 Bytes
-338 Bytes

demo/test/application_system_test_case.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ def remote_selenium? = @remote_selenium ||= ENV["SELENIUM_HOST"].present? || ENV
1818
{}
1919
end
2020

21-
driven_by :selenium, using: :headless_chrome, screen_size: [960, 720], options: options do |capabilities|
21+
# Debugging tip: Change to `chrome` (not headless) and then browse to:
22+
# http://localhost:7900/?autoconnect=1&resize=scale&password=secret. You can watch the fun there.
23+
driven_by :selenium, using: :headless_chrome, screen_size: [960, 800], options: options do |capabilities|
2224
capabilities.add_argument("force-device-scale-factor=1")
2325
capabilities.add_argument("lang=#{ENV.fetch('LANG', 'en_CA')}")
24-
# Needed for Selenium 129. Presumably remove at some point.
25-
capabilities.add_argument("--headless=old")
2626
end
2727

2828
if remote_selenium?

demo/test/system/bootstrap_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class BootstrapTest < ApplicationSystemTestCase
7474
#{html}
7575
MD
7676
end
77-
augmented_readme.gsub!(/127.0.0.1:\d+/, "test.host")
77+
augmented_readme.gsub!(/(127.0.0.1:\d+|shell:3001)/, "test.host")
7878
File.write(File.expand_path("../../../README.md", __dir__), augmented_readme)
7979
end
8080

0 commit comments

Comments
 (0)