浏览器指纹的详细解释可以看这个:
常见的浏览器指纹包含哪些_小锋学长生活大爆炸的博客-CSDN博客
方法一、使用stealth.min.js
反正我是没成功,大家仅供参考
代码语言:javascript复制def mergeStealthJS(self, browser):
# https://bot.sannysoft.com/
if not os.path.exists('stealth.min.js'):
url = 'https://cdn.jsdelivr.net/gh/requireCool/stealth.min.js/stealth.min.js'
resp = requests.get(url)
with open('stealth.min.js', 'w ') as f:
f.write(resp.text)
with open('stealth.min.js', 'r') as f:
content = f.read()
browser.execute_cdp_cmd('Page.addScriptToEvaluateOnNewDocument', {'source': content})
return browser
方法二、使用selenium-stealth
我也没成功,大家可以试试
代码语言:javascript复制pip3 install selenium-stealth
代码语言:javascript复制from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium_stealth import stealth
options = Options()
options.add_argument("start-maximized")
# Chrome is controlled by automated test software
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)
s = Service('C:\BrowserDrivers\chromedriver.exe')
driver = webdriver.Chrome(service=s, options=options)
# Selenium Stealth settings
stealth(driver,
languages=["en-US", "en"],
vendor="Google Inc.",
platform="Win32",
webgl_vendor="Intel Inc.",
renderer="Intel Iris OpenGL Engine",
fix_hairline=True,
)
driver.get("https://bot.sannysoft.com/")
方法三、使用undetected-chromedriver
这个确实成功了~
GitHub - ultrafunkamsterdam/undetected-chromedriver: Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
代码语言:javascript复制pip3 install undetected_chromedriver
代码语言:javascript复制import undetected_chromedriver as uc
driver = uc.Chrome()
driver.get('https://nowsecure.nl')
还有一点要注意:
异常现象:
如果使用pyinstaller对undetected-chromedriver直接进行打包,那打包后的exe大概率无法运行的。
解决方法:
在代码最开始在import 模块之前加上以下内容,然后再进行打包即可:
代码语言:javascript复制from multiprocessing import freeze_support
freeze_support()
原因解析:
在调用某些模块的时候,也是进程,而在多进程中,你程序中的进程不会被阻塞,而一直循环起进程。而undetected-chromedriver内部正好就开了进程。