Skip to content

Commit

Permalink
extend selenium timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Jan 9, 2025
1 parent bfa8e44 commit 02dc0d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions prism-image-search/tests/e2e/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def browser():
chrome_options.add_argument(f"--user-agent={user_agent}")

driver = webdriver.Chrome(options=chrome_options)
# Wait up to 50 seconds for elements to appear
driver.implicitly_wait(50)
# Wait up to 2 minutes for elements to appear
driver.implicitly_wait(120)
yield driver
driver.quit()

Expand Down
4 changes: 2 additions & 2 deletions quote-semantic-search/tests/e2e/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def browser():
chrome_options.add_argument(f"--user-agent={user_agent}")

driver = webdriver.Chrome(options=chrome_options)
# Wait up to 50 seconds for elements to appear
driver.implicitly_wait(50)
# Wait up to 2 minutes for elements to appear
driver.implicitly_wait(120)
yield driver
driver.quit()

Expand Down

0 comments on commit 02dc0d7

Please sign in to comment.