FIX: specify chrome version (#22681)

This commit is contained in:
Krzysztof Kotlarek 2023-07-19 15:06:56 +10:00 committed by GitHub
parent c2e90f8c07
commit 77b4e42f61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -206,7 +206,7 @@ jobs:
- name: Setup Webdriver - name: Setup Webdriver
if: matrix.build_type == 'system' if: matrix.build_type == 'system'
run: bin/rails runner "require 'webdrivers'; Webdrivers::Chromedriver.update" run: bin/rails runner "require 'webdrivers'; Webdrivers::Chromedriver.required_version='114.0.5735.90'; Webdrivers::Chromedriver.update"
- name: Core System Tests - name: Core System Tests
if: matrix.build_type == 'system' && matrix.target == 'core' if: matrix.build_type == 'system' && matrix.target == 'core'

View File

@ -63,6 +63,8 @@ require "webdrivers"
require "selenium-webdriver" require "selenium-webdriver"
require "capybara/rails" require "capybara/rails"
Webdrivers::Chromedriver.required_version = "114.0.5735.90"
# The shoulda-matchers gem no longer detects the test framework # The shoulda-matchers gem no longer detects the test framework
# you're using or mixes itself into that framework automatically. # you're using or mixes itself into that framework automatically.
Shoulda::Matchers.configure do |config| Shoulda::Matchers.configure do |config|