diff --git a/Dockerfiles/Dockerfile.selenium-jenkins-python311-plus-chromedriver126 b/Dockerfiles/Dockerfile.selenium-jenkins-python311-plus-chromedriver126 index 7c85740fe..4d29b70b6 100644 --- a/Dockerfiles/Dockerfile.selenium-jenkins-python311-plus-chromedriver126 +++ b/Dockerfiles/Dockerfile.selenium-jenkins-python311-plus-chromedriver126 @@ -18,6 +18,6 @@ RUN curl https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.d # && chmod +x /usr/local/bin/chromedriver # hard code the zip URL here since `curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` still points to 114 which is out of date -RUN wget -O /tmp/chromedriver.zip https://storage.googleapis.com/chrome-for-testing-public/126.0.6478.55/linux64/chromedriver-linux64.zip \ +RUN wget -O /tmp/chromedriver.zip https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.108/linux64/chromedriver-linux64.zip \ && unzip -p /tmp/chromedriver.zip chromedriver-linux64/chromedriver > /usr/local/bin/chromedriver \ && chmod +x /usr/local/bin/chromedriver diff --git a/Jenkinsfiles/Jenkinsfile.cbc-run-multi-pr-checks-w-selenium-chromium b/Jenkinsfiles/Jenkinsfile.cbc-run-multi-pr-checks-w-selenium-chromium index e2ee1e226..ce28de736 100644 --- a/Jenkinsfiles/Jenkinsfile.cbc-run-multi-pr-checks-w-selenium-chromium +++ b/Jenkinsfiles/Jenkinsfile.cbc-run-multi-pr-checks-w-selenium-chromium @@ -59,7 +59,7 @@ pipeline { } } - stage("CHECK chromedriver 126") { + stage("CHECK chromedriver version - should be compatible with the chrome browser version.") { steps{ sh """ /usr/local/bin/chromedriver --version diff --git a/apps/integration_tests/selenium_generic.py b/apps/integration_tests/selenium_generic.py index 860f91e48..86e8e7f5c 100644 --- a/apps/integration_tests/selenium_generic.py +++ b/apps/integration_tests/selenium_generic.py @@ -83,7 +83,7 @@ def setup_method(self, method): else: driver_exec = '/usr/local/bin/chromedriver' if self.on_remote_ci.lower() == 'true' else '/usr/bin/chromedriver' print("Chrome Driver, location={}".format(driver_exec)) - opt.add_argument("--window-size=1920,1080") + # opt.add_argument("--window-size=1920,1080") opt.add_argument("--headless") ser = Service(driver_exec) self.driver = webdriver.Chrome(service=ser, options=opt)