Parcourir la source

try to fix flaky tests by again increasing implicit wait

Rodja Trappe il y a 2 ans
Parent
commit
8ed3eb4215
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/conftest.py

+ 1 - 1
tests/conftest.py

@@ -30,7 +30,7 @@ def capabilities(capabilities: Dict) -> Dict:
 
 @pytest.fixture
 def selenium(selenium: webdriver.Chrome) -> webdriver.Chrome:
-    selenium.implicitly_wait(2)
+    selenium.implicitly_wait(4)
     selenium.set_page_load_timeout(2)
     return selenium