Python:使用Cookie登录Selenium

我想要做的是打开一个页面(例如youtube)并自动登录,就像我在浏览器中手动打开它一样。

据我了解,我必须使用cookie,问题是我不知道如何使用。

我尝试使用以下方法下载YouTube Cookie:

driver = webdriver.Firefox(executable_path="driver/geckodriver.exe")

driver.get("https://www.youtube.com/")

print(driver.get_cookies())

我得到的是:

{'name':'VISITOR_INFO1_LIVE','value':'EDkAwwhbDKQ','path':'/','domain':'.youtube.com‘,’expiry’:None,’secure’:False,’httpOnly

‘:真实}

那我必须加载什么cookie才能自动登录?

回答:

您可以pickle将Cookie保存为文本文件,并在以后加载:

def save_cookie(driver, path):

with open(path, 'wb') as filehandler:

pickle.dump(driver.get_cookies(), filehandler)

def load_cookie(driver, path):

with open(path, 'rb') as cookiesfile:

cookies = pickle.load(cookiesfile)

for cookie in cookies:

driver.add_cookie(cookie)

以上是 Python:使用Cookie登录Selenium 的全部内容, 来源链接: utcz.com/qa/433344.html

回到顶部