硒+ 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)
用我的个人资料打开我的铬,但删除了所有cookie和密码连接。
我如何使用保存的密码和会话打开Chrome?
I'm trying to open chrome browser with password session in python3 and Selenium
Here is my code :
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)
It's open my chrome with my profile but delete all cookie and password connection.
How i can open chrome with my saved password and session ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在使用Linux,请尝试未发现的Chromedriver作为WebDriver
You're using linux, try undetected chromedriver as webdriver