我的期望是某些东西会在验证后自动添加到 cookies 数组中,但事实并非如此。
driver = webdriver.Chrome(chromedriver)
whatsapp_url = "https://web.whatsapp.com"
driver.get(whatsapp_url)
print(driver.get_cookies())
time.sleep(30) # We are doing the manual QR code verification here
print(driver.get_cookies())
driver.get_cookies()
前后也是空的
原文由 ishandutta2007 发布,翻译遵循 CC BY-SA 4.0 许可协议
尝试这个:
您需要首次登录。当您必须存储会话时,它会始终有效。无需导入/导出 cookie。