From 675f98b0145f908897c4d899836bcb3dad9da79a Mon Sep 17 00:00:00 2001 From: John Ogle Date: Mon, 17 Feb 2025 12:24:22 -0800 Subject: [PATCH] Remove delay before exit --- selenium_cookie_extractor_json.py | 1 - 1 file changed, 1 deletion(-) diff --git a/selenium_cookie_extractor_json.py b/selenium_cookie_extractor_json.py index 3162afe..96e0386 100644 --- a/selenium_cookie_extractor_json.py +++ b/selenium_cookie_extractor_json.py @@ -64,7 +64,6 @@ print("\nExtracted Cookie JSON:") print(json_data) print("\nClosing the browser window to avoid invalidating the cookies (Google uses refresh tokens).") -time.sleep(5) # wait a few seconds to allow the user to read the output # Close the browser window. driver.quit()