如何使用 Selenium 打开 Chrome 默认配置文件?
我们可以使用 Selenium 打开 Chrome 默认配置文件。要获取 Chrome 个人资料路径,我们需要在 Chrome 浏览器中输入 chrome://version/,然后按 Enter。
我们需要使用 ChromeOptions 类来打开默认的 Chrome 配置文件。我们需要使用 add_argument 方法来指定 Chrome 配置文件的路径。
语法
o = webdriver.ChromeOptions() o.add_argument = {'user-data-dir':'/Users/Application/Chrome/Default'}
示例
代码实现
from selenium import webdriver #object of ChromeOptions class o = webdriver.ChromeOptions() #adding Chrome Profile Path o.add_argument = {'user-data-dir':'/Users/Application/Chrome/Default'} #set chromedriver.exe path driver = webdriver.Chrome(executable_path="C:\chromedriver.exe", options=o) #maximize browser driver.maximize_window() #launch URL driver.get("https://tutorialspoint.com/index.htm") #get browser title print(driver.title) #quit browser driver.quit()
输出
广告