如何通过Python使用GeckoDriver和Firefox使Selenium脚本无法检测? [英] How can I make a Selenium script undetectable using GeckoDriver and Firefox through Python?

查看:80
本文介绍了如何通过Python使用GeckoDriver和Firefox使Selenium脚本无法检测?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以使用 geckodriver 使Selenium脚本在Python中无法检测?

我正在使用Selenium进行刮擦.我们需要使用任何保护措施以使网站无法检测到硒吗?

解决方案

检测到硒驱动的 Firefox / GeckoDriver 的事实没有得到"t取决于任何特定的 GeckoDriver Firefox 版本.网站本身可以检测网络流量,并可以将浏览器客户端 Web浏览器标识为 WebDriver受控./p>

根据

现在, NavigatorAutomationInformation 界面不应在 WorkerNavigator 上公开.

所以

  webdriver如果设置了webdriver-active标志,则返回true,否则返回false. 

位置

  navigator.webdriver定义了一种标准方法,用于与用户代理进行协作,以告知文档该文档由WebDriver控制,例如,以便在自动化过程中可以触发备用代码路径. 

因此,最重要的是:

硒可以自我识别


但是,一些避免在网络抓取过程中被检测到的通用方法如下:

Is there a way to make your Selenium script undetectable in Python using geckodriver?

I'm using Selenium for scraping. Are there any protections we need to use so websites can't detect Selenium?

解决方案

The fact that selenium driven Firefox / GeckoDriver gets detected doesn't depends on any specific GeckoDriver or Firefox version. The Websites themselves can detect the network traffic and can identify the Browser Client i.e. Web Browser as WebDriver controled.

As per the documentation of the WebDriver Interface in the latest editor's draft of WebDriver - W3C Living Document the webdriver-active flag which is initially set as false, is set to true when the user agent is under remote control i.e. when controlled through Selenium.

Now that the NavigatorAutomationInformation interface should not be exposed on WorkerNavigator.

So,

webdriver
    Returns true if webdriver-active flag is set, false otherwise.

where as,

navigator.webdriver
    Defines a standard way for co-operating user agents to inform the document that it is controlled by WebDriver, for example so that alternate code paths can be triggered during automation.

So, the bottom line is:

Selenium identifies itself


However some generic approaches to avoid getting detected while web-scraping are as follows:

这篇关于如何通过Python使用GeckoDriver和Firefox使Selenium脚本无法检测?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆