From 02b383b90b0914361d3c96b547ca025ac1a5e30c Mon Sep 17 00:00:00 2001 From: powe97 <116031952+powe97@users.noreply.github.com> Date: Tue, 5 Mar 2024 20:47:41 -0500 Subject: [PATCH] Extend timeout --- transfer_scraper/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transfer_scraper/main.py b/transfer_scraper/main.py index c378706..0d7ba5f 100644 --- a/transfer_scraper/main.py +++ b/transfer_scraper/main.py @@ -29,7 +29,7 @@ def wait(ec): global driver WebDriverWait( - driver, 60, ignored_exceptions=[StaleElementReferenceException] + driver, 300, ignored_exceptions=[StaleElementReferenceException] ).until(ec) sleep(random.uniform(400, 1900) / 1000)