使用 Python Selenium Webdriver 加载 Chrome 的默认配置文件
为了在 Chrome 会话中无缝保留站点首选项和 Cookie,通常需要启动浏览器使用其默认配置文件。 Python 的 Selenium Webdriver 提供了一种便捷的方法来实现此目的。
解决方案
以下代码片段演示了如何使用 Selenium Webdriver 加载 Chrome 的默认配置文件:
<code class="python">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)</code>
找到配置文件路径
要获取 Chrome 配置文件数据的路径,请按照以下步骤操作:
其他选项
以上是如何使用 Python Selenium Webdriver 加载 Chrome 的默认配置文件?的详细内容。更多信息请关注PHP中文网其他相关文章!