From c813b5a3c09cf73a62ae5638bc16cde80e6a3165 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Tue, 18 Mar 2025 18:13:34 +0100 Subject: [PATCH] Change browser page delay --- sources/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/browser.py b/sources/browser.py index 917498b..0f977d6 100644 --- a/sources/browser.py +++ b/sources/browser.py @@ -74,7 +74,7 @@ class Browser: """Navigate to a specified URL.""" try: self.driver.get(url) - time.sleep(2) # Wait for page to load + time.sleep(1) # Wait for page to load self.logger.info(f"Navigated to: {url}") return True except WebDriverException as e: