硒+ Python用会话密码打开Chrome

发布于 2025-01-22 02:57:59 字数 560 浏览 0 评论 0原文

我正在尝试使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝咒 2025-01-29 02:57:59

您正在使用Linux,请尝试未发现的Chromedriver作为WebDriver

You're using linux, try undetected chromedriver as webdriver

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文