Skip to content

Commit

Permalink
trouble shoot rendering timeout at hicn field...
Browse files Browse the repository at this point in the history
  • Loading branch information
JFU-NAVA-PBC committed Dec 13, 2024
1 parent 76b8887 commit 8a1e3df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/integration_tests/selenium_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8a1e3df

Please sign in to comment.