我已经使用cookies.txt扩展程序生成了一个.txt文件,其中包含我在Chrome中的活动会话中的所有Cookie,我想导出它们以在Selenium的chromedriver会话中使用,以登录需要身份验证的网站。
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
option = webdriver.ChromeOptions()
browser = webdriver.Chrome()
browser.get('https://www.amazon.co.uk/')
我希望你能用你的知识引导我...... 谢谢!!!
答案 0 :(得分:0)
这可能不是问题的答案,但我发现我可以使用当前Chrome配置文件中的所有数据登录并正确运行脚本....如下所示::
firebase.auth().currentUser.getIdToken().
这设置了chrome的默认配置文件,这是我在运行Chromedriver时使用的那个......