From 7e475dd940fca3b01b68604295c3d35918b54a39 Mon Sep 17 00:00:00 2001 From: Brennan Gensch Date: Fri, 10 Mar 2017 15:00:06 -0600 Subject: [PATCH] Updating CHROME_DRIVER_VERSION to 2.28 Changes include: - Fixes a bug which blocked ChromeDriver automation extension from loading and thereby causing window resizing/positioning & screenshot functionalities to break. - Fixes a bug where NetLog json files were being truncated. - Fixes a bug which caused ChromeDriver to timeout and/or hang randomly while a dialog is showing. - Fixes a bug which caused FindElements to fail in some scenarios. - Various updates to work with Chrome 57+ . --- NodeChrome/Dockerfile.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeChrome/Dockerfile.txt b/NodeChrome/Dockerfile.txt index c68e13f552..04dba2568c 100644 --- a/NodeChrome/Dockerfile.txt +++ b/NodeChrome/Dockerfile.txt @@ -24,7 +24,7 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key #================== # Chrome webdriver #================== -ARG CHROME_DRIVER_VERSION=2.27 +ARG CHROME_DRIVER_VERSION=2.28 RUN wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip \ && rm -rf /opt/selenium/chromedriver \ && unzip /tmp/chromedriver_linux64.zip -d /opt/selenium \