所以我想使用pythons webdriver打开其默认配置文件的chrome。我已经尝试了我能找到的所有东西,但我仍然无法让它发挥作用。谢谢你的帮助!
答案 0 :(得分:52)
这终于让它为我工作了。
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=C:\\Path") #Path to your chrome profile
w = webdriver.Chrome(executable_path="C:\\Users\\chromedriver.exe", chrome_options=options)
要查找Chrome配置文件数据的路径,您需要在地址栏中输入chrome://version/
。对于前者我的显示为C:\Users\pc\AppData\Local\Google\Chrome\User Data\Default
,要在我必须排除\Default\
的脚本中使用它,所以我们最终只能使用C:\Users\pc\AppData\Local\Google\Chrome\User Data
。
此外,如果您想为selenium设置单独的配置文件:将路径替换为任何其他路径,如果它在启动时不存在,则chrome将为其创建新的配置文件和目录。
答案 1 :(得分:10)
这解决了我的问题。 (最后删除默认值)
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("--user-data-dir=/home/username/.config/google-chrome")
cls.driver = webdriver.Chrome(options=options,
executable_path="./../ext/chromedriver")
Chrome_Options
不推荐使用。请改用options
答案 2 :(得分:1)
这个答案很简单,不言自明。
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
exec_path_chrome = "path/to/Google Chrome" #Do not use this path that is extracted from "chrome://version/"
exec_path_driver = "path/to/chromedriver"
ch_options = Options() #Chrome Options
ch_options.add_argument("user-data-dir = /path/to/Chrome Profile") #Extract this path from "chrome://version/"
driver = webdriver.Chrome(executable_path = exec_path_driver, options = ch_options) #Chrome_Options is deprecated. So we use options instead.
driver.get("https://stackoverflow.com/a/57894065/4061346")
@MadRabbit所说,在地址栏中输入chrome://version/
,以找到您的Chrome配置文件数据的路径。
C:\Users\pc\AppData\Local\Google\Chrome\User Data\Default
/Users/user/Library/Application Support/Google/Chrome/Default
因此,您要做的就是从个人资料路径中删除最后一部分 。Default
注意:请确保不要同时运行多个会话,以免出现问题。
答案 3 :(得分:0)
只分享对我有用的东西。使用默认的配置文件很复杂,Chrome不断崩溃。
from pathlib import Path
from selenium import webdriver
driver_path = Path("{}/driver/chromedriver75.exe".format(PATH_TO_FOLDER))
user_data_dir = Path("{}/driver/User Data".format(PATH_TO_FOLDER))
options = webdriver.ChromeOptions()
# TELL WHERE IS THE DATA DIR
options.add_argument("--user-data-dir={}".format(user_data_dir))
# USE THIS IF YOU NEED TO HAVE MULTIPLE PROFILES
options.add_argument('--profile-directory=Default')
driver = webdriver.Chrome(executable_path=driver_path, options=options)
driver.get("https://google.com/")
通过此操作,Chrome将创建文件夹User Data
并将所有数据保存在我想要的位置,将项目移动到另一台计算机很容易。
答案 4 :(得分:0)
我用“ Yoannes Geissler”的答案解决了我的问题。
在我的情况下,我的个人资料名为“个人资料2”
我的代码:
options = webdriver.ChromeOptions()
options.add_argument('--user-data-dir=C:/Users/GOD/AppData/Local/Google/Chrome/User Data')
options.add_argument('--profile-directory=Profile 2')
wd = webdriver.Chrome(options=options)
以下一行解决了我的问题:
options.add_argument('--profile-directory=Profile 2')