Procházet zdrojové kódy

lower selenium timeouts are still working fine

Rodja Trappe před 2 roky
rodič
revize
166fb05078
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      tests/conftest.py

+ 2 - 2
tests/conftest.py

@@ -16,8 +16,8 @@ def chrome_options(chrome_options):
 
 @pytest.fixture
 def selenium(selenium):
-    selenium.implicitly_wait(2)
-    selenium.set_page_load_timeout(5)
+    selenium.implicitly_wait(0.1)
+    selenium.set_page_load_timeout(1)
     return selenium