From db7ea4844689323f71667e53b90a890c804b909b Mon Sep 17 00:00:00 2001 From: Til Blechschmidt Date: Mon, 4 Mar 2024 12:33:28 +0100 Subject: [PATCH] Update webdriver binaries to latest version --- distribution/docker/images/node/driver/web-driver.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distribution/docker/images/node/driver/web-driver.sh b/distribution/docker/images/node/driver/web-driver.sh index eb13547..7ad20d0 100755 --- a/distribution/docker/images/node/driver/web-driver.sh +++ b/distribution/docker/images/node/driver/web-driver.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -GECKO_VERSION=0.31.0 -CHROME_VERSION=101.0.4951.41 +GECKO_VERSION=0.34.0 +CHROME_VERSION=122.0.6261.94 PREV_PWD=$(pwd) TMP_DIR=$(mktemp -d) @@ -25,7 +25,7 @@ function geckodriver { function chromedriver { # Install driver - wget --no-check-certificate https://chromedriver.storage.googleapis.com/${CHROME_VERSION}/chromedriver_linux64.zip + wget --no-check-certificate https://storage.googleapis.com/chrome-for-testing-public/${CHROME_VERSION}/linux64/chromedriver-linux64.zip unzip chromedriver_linux64.zip chmod +x chromedriver mv chromedriver /usr/bin