如何在chrome-embedded with chromedriver中设置用户数据目录?

时间:2015-11-14 00:17:39

标签: python selenium webdriver selenium-chromedriver chromium-embedded

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

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

1 个答案:

答案 0 :(得分:2)

您可以使用chromeOptions将cache-path作为参数传递。

请在下面找到示例代码:

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_client\Release\cefclient.exe"

driver = webdriver.Chrome(executable_path=r"C:\Driver\chromedriver_220.exe", chrome_options=chromeOptions)

driver.get("https://google.com")
s = "test" 
driver.find_element_by_name("q").send_keys(s)