如何在Selenium中使用默认浏览器配置文件而不是新的?

时间:2019-10-07 16:16:47

标签: selenium google-chrome

我找不到任何相关的答案,我的问题很简单。

上下文并不真正相关。

对于Selenium来说,在执行编码操作时使用我通常安装的浏览器(Chrome或Firefox)对我来说非常重要。

1 个答案:

答案 0 :(得分:0)

也许使用您的标准配置文件会有所帮助?在我的情况下,网站检测到Selenium浏览器。这段代码解决了我的问题。

path = str(Path.home())
path = path + "/.mozilla/firefox/xxxx.default-release"
profile = FirefoxProfile(path)
driver = webdriver.Firefox(profile)