绕过硒机器人检测

时间:2020-03-23 19:46:21

标签: python selenium selenium-webdriver automation selenium-chromedriver

您好,我想使用Requests,Selenium和Chrome驱动程序在某些网站上自动进行购买。它适用于大多数网站,但在某些网站上,它们会立即检测到我是机器人,并切断了我对该网站的访问权限。我在各个论坛上进行搜索以尝试找到解决方案,但是它们大多数都是过时的方法。到目前为止,这是我用于启动Web浏览器的代码。

auto = webdriver.ChromeOptions()
auto.add_experimental_option("excludeSwitches", ['enable-automation'])
auto.add_experimental_option('useAutomationExtension', False)
driver = webdriver.Chrome(options=auto,
                    executable_path='path/to/driver')

我想做的事情看起来像这样:https://www.youtube.com/watch?time_continue=19&v=2gZi5IxmTMM&feature=emb_logo

0 个答案:

没有答案