selenium加载浏览器配置文件
Posted jdm532000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium加载浏览器配置文件相关的知识,希望对你有一定的参考价值。
谷歌浏览器:
google_path=r‘--user-data-dir=C:UsersjdmAppDataLocalGoogleChromeUser Data‘
option=webdriver.ChromeOptions()
option.add_argument(google_path)
driver=webdriver.Chrome(chrome_options=option)
火狐浏览器:
firefox_path=r‘C:UsersjdmAppDataRoamingMozillaFirefoxProfiles7elc1ibd.default‘
profile=webdriver.FirefoxProfile(firefox_path)
driver=webdriver.Firefox(profile)
以上是关于selenium加载浏览器配置文件的主要内容,如果未能解决你的问题,请参考以下文章
转Selenium 加载Chrome/Firefox浏览器配置文件
Firefox配置文件加载(Selenium+Python)