diff options
-rw-r--r-- | qa/Dockerfile | 2 | ||||
-rw-r--r-- | qa/qa/specs/config.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qa/Dockerfile b/qa/Dockerfile index 6afb614cc62..97ae1961e34 100644 --- a/qa/Dockerfile +++ b/qa/Dockerfile @@ -1,7 +1,7 @@ FROM ruby:2.3 LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>" -ENV CHROME_VERSION 59.0.3071.104-1 +ENV CHROME_VERSION 59.0.3071.109-1 ENV CHROME_DRIVER_VERSION 2.30 ## diff --git a/qa/qa/specs/config.rb b/qa/qa/specs/config.rb index 78a93828d36..b341aa3094a 100644 --- a/qa/qa/specs/config.rb +++ b/qa/qa/specs/config.rb @@ -55,7 +55,7 @@ module QA Capybara.register_driver :chrome do |app| capabilities = Selenium::WebDriver::Remote::Capabilities.chrome( 'chromeOptions' => { - 'binary' => '/opt/google/chrome-beta/google-chrome-beta', + 'binary' => '/usr/bin/google-chrome-stable', 'args' => %w[headless no-sandbox disable-gpu] } ) |