diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 11:45:08 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 11:45:08 +0300 |
| commit | 33047a86bab3c15470829431015df1c8a59d98f6 (patch) | |
| tree | b9958c34e82accde48d1a41e0d229973dea4fbf5 /tests/integration | |
| parent | b447cda5157ad97f7e2073c7545aefe424bf5d68 (diff) | |
try adding selenium page timeout
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/selenium_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py index 11aa96fc0..49fb885b9 100644 --- a/tests/integration/selenium_test.py +++ b/tests/integration/selenium_test.py @@ -18,6 +18,8 @@ class SeleniumTest(unittest.TestCase): self.driver = webdriver.Remote(command_executor=SELENIUM_GRID_ENDPOINT, options=webdriver.ChromeOptions()) self.base_url = f"http://tt-rss-{CI_COMMIT_SHORT_SHA}-app.{K8S_NAMESPACE}.svc.cluster.local/tt-rss" + self.driver.set_page_load_timeout(10) + def tearDown(self): self.driver.quit() |