python selenium被反爬系统识别的问题

在使用selenium这个压箱底的反爬技能爬取boss时,踢到了铁板。
selenium也能被反爬系统识别出来,无法打开链接。
原因在于slenium打开网页时,Chrome会显示这个标签条,使得服务器识别为爬虫。
python selenium被反爬系统识别的问题_第1张图片

解决办法就是设置options,隐藏标签:
代码如下:

from selenium import webdriver
from selenium.webdriver import Chrome
from selenium.webdriver import ChromeOptions
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-automation'])
driver=Chrome(options=options)
webpage=driver.get('https:xxxxxxx')

这时候再运行就解决问题了。

参考文献:
[1]38373.Python爬虫实战(8)Selenium+Boss直聘[EB/OL].http://www.pythonheidong.com/blog/article/176611/,2019-12-14.
[2]青南.一行js代码识别Selenium+Webdriver及其应对方案[EB/OL].https://www.cnblogs.com/xieqiankun/p/hide-webdriver.html,2019-2-12.

你可能感兴趣的:(python selenium被反爬系统识别的问题)