summaryrefslogtreecommitdiff
path: root/tests/integration/selenium_test.py
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-22 12:36:20 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-22 12:36:20 +0300
commitcb6fe8f974898421739e5c825780ad1301b312ab (patch)
tree2a6b38750e5b8f3c2d384f90daf1a4591f95f1fc /tests/integration/selenium_test.py
parent99caba74a9ba38f5f4d8ec5b90d9bc634b2f603c (diff)
adjust timeouts
Diffstat (limited to 'tests/integration/selenium_test.py')
-rw-r--r--tests/integration/selenium_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py
index ef4929105..f3ae0e346 100644
--- a/tests/integration/selenium_test.py
+++ b/tests/integration/selenium_test.py
@@ -18,8 +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.set_page_load_timeout(10)
- self.driver.driver.implicitly_wait(10)
+ self.driver.driver.implicitly_wait(2)
def tearDown(self):
self.driver.quit()