From 5981fff500d3671366d4a943aca69c6ef88b7e79 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Thu, 22 Jun 2017 13:51:47 +0200 Subject: [PATCH] Update chrome version and the binary path --- qa/Dockerfile | 2 +- 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 " -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] } )