Selenium + Python打开chrome与会话密码



我试图在python3和Selenium中打开chrome浏览器的密码会话下面是我的代码:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
options = Options();
options.add_argument(r"--user-data-dir=/home/username/.config/google-chrome/")
options.add_argument(r'--profile-directory=User Profile')
service = Service('/opt/google/chrome/chromedriver')
driver = webdriver.Chrome(service=service, options=options)

它打开我的chrome与我的个人资料,但删除所有的cookie和密码连接。

如何打开chrome与我保存的密码和会话?

如果您使用的是linux,请尝试未检测到的chromedriver作为webdriver

相关内容

  • 没有找到相关文章

最新更新