要跨會話保留cookie 和網站首選項,需要在使用Python Selenium 時啟動Comehr 及其預設值設定檔Webdriver。
以下程式碼提供了解決方案:
<code class="python">from selenium import webdriver # Set path to default Chrome profile (exclude trailing "\Default") options = webdriver.ChromeOptions() path = "C:\Users\User\AppData\Local\Google\Chrome\User Data" options.add_argument(f"user-data-dir={path}") # Set path tochromedriver.exe w = webdriver.Chrome(executable_path="C:\Users\User\chromedriver.exe", chrome_options=options)</code>
為Selenium 建立和使用單獨的設定檔:
以上是如何使用 Python Selenium Webdriver 載入預設 Chrome 設定檔?的詳細內容。更多資訊請關注PHP中文網其他相關文章!