forked from michaelkitas/Python-Selenium-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload-cookies.py
26 lines (19 loc) · 827 Bytes
/
load-cookies.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import pickle
import undetected_chromedriver as uc
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
if __name__ == '__main__':
browser = uc.Chrome()
browser.get('https://accounts.google.com/signin/v2/identifier?continue=https%3A%2F%2Fmail.google.com%2Fmail%2F&service=mail&sacu=1&rip=1&hl=en&flowName=GlifWebSignIn&flowEntry=ServiceLogin')
cookies = pickle.load(open("cookies.pkl", "rb"))
for cookie in cookies:
cookie['domain'] = ".google.com"
try:
browser.add_cookie(cookie)
except Exception as e:
print(e)
browser.get('https://mail.google.com/mail/u/0/#inbox')
time.sleep(120)