diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 12:42:41 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 12:42:41 +0300 |
| commit | 9c66b9b326002f2ae5b334af08de44c00354818f (patch) | |
| tree | f01a06e40296361fe424cddb00aa3f8957788663 /tests | |
| parent | 80647fa4e81aafed93aa74e5f6c197fdd03646a2 (diff) | |
adjust timeouts again
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/selenium_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py index 068f40c9b..de25afad5 100644 --- a/tests/integration/selenium_test.py +++ b/tests/integration/selenium_test.py @@ -18,7 +18,7 @@ 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.implicitly_wait(2) + self.driver.implicitly_wait(5) def tearDown(self): self.driver.quit() |