Procházet zdrojové kódy

increasing page load timeout to prevent flakyness

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

+ 1 - 1
tests/conftest.py

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