我找不到任何相关的答案,我的问题很简单。
上下文并不真正相关。
对于Selenium来说,在执行编码操作时使用我通常安装的浏览器(Chrome或Firefox)对我来说非常重要。
答案 0 :(得分:0)
也许使用您的标准配置文件会有所帮助?在我的情况下,网站检测到Selenium浏览器。这段代码解决了我的问题。
path = str(Path.home())
path = path + "/.mozilla/firefox/xxxx.default-release"
profile = FirefoxProfile(path)
driver = webdriver.Firefox(profile)