我正在尝试将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)