如何在chromedriver嵌入chrome中设置用户数据目录



我正在尝试将CEF用于类似chrome配置文件的功能。在谷歌上搜索后,我发现CEF通过CefSettings.cache_path和--cache路径支持类似的功能。

但我无法弄清楚如何通过chromedriver设置此功能。

您可以使用chromeOptions将缓存路径作为参数传递。

请找到以下示例代码:

from selenium  import webdriver
from selenium.webdriver.chrome.options import Options
chromeOptions = Options()
chromeOptions.add_argument("--cache-path=C:\CEF\c_path")
chromeOptions.binary_location = r"C:cef_binary_clientReleasecefclient.exe"
driver = webdriver.Chrome(executable_path=r"C:Driverchromedriver_220.exe", chrome_options=chromeOptions)
driver.get("https://google.com")
s = "test" 
driver.find_element_by_name("q").send_keys(s)

相关内容

  • 没有找到相关文章

最新更新