From 623bb51322521dfb69abd7f9005694a86fa525cf Mon Sep 17 00:00:00 2001 From: Oleh Fedorenko Date: Fri, 25 Oct 2024 14:45:57 +0000 Subject: [PATCH] Refs #37825 - Disable search engine choice screen in chrome --- test/integration_test_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration_test_helper.rb b/test/integration_test_helper.rb index 33011320219c..bb0b5321a40b 100644 --- a/test/integration_test_helper.rb +++ b/test/integration_test_helper.rb @@ -26,6 +26,7 @@ def chrome_options options = Selenium::WebDriver::Chrome::Options.new options.args << '--window-size=1024,768' + options.args << '--disable-search-engine-choice-screen' options.args += ENV.fetch('ADDITIONAL_CHROME_OPTIONS', '').split(';') options end