Configure selenium to use Chrome version 120 (#29038)

This commit is contained in:
Matt Jankowski 2024-02-01 04:46:31 -05:00 committed by GitHub
parent 812a131423
commit 8b7b0ee598
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ Capybara.register_driver :headless_chrome do |app|
options = Selenium::WebDriver::Chrome::Options.new
options.add_argument '--headless=new'
options.add_argument '--window-size=1680,1050'
options.browser_version = '120'
Capybara::Selenium::Driver.new(
app,