jjxx2005 发表于 2020-7-29 12:55:07

selenium无头浏览器设置和规避问题

from selenium import webdriver
# 实现无头浏览器
from selenium.webdriver.chrome.options import Options
# 实现规避检测
from selenium.webdriver import ChromeOptions
# 实现无头浏览器参数
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
# 实现规避检测
option = ChromeOptions()
option.add_experimental_option('excludeSwitches',['enable-automation'])

c1 = webdriver.Chrome(options=chrome_options,options=option)
c1.get('https://www.baidu.com')
print(c1.page_source)


我是Python3.8
c1 = webdriver.Chrome(chrome_options=chrome_options,options=option)同时用两个参数就报错
DeprecationWarning: use options instead of chrome_options
让我把chrome_options替换成options   如果我单独用无头浏览器或单独用规避我可以只写一个options=参数
但是如果两个都想用,这样如何能让他不出那个报错提示?



wzdr 发表于 2020-7-29 13:23:43

{:10_269:}看不懂 。坐等大神回复。

hgs731 发表于 2021-4-23 17:14:54

哥们找到解决办法了吗?

yfcz6095 发表于 2021-8-2 21:40:36

我也碰到同样问题

nahongyan1997 发表于 2021-8-3 15:35:33

本帖最后由 nahongyan1997 于 2021-8-3 15:39 编辑

看代码:
from selenium import webdriver

# 你如果看了 selenium 的源码的话你就会发现这个 Options 和 ChromeOptions 其实是一个东西,所以他们两个的方法是一模一样的,注释掉一个
# 实现无头浏览器
# from selenium.webdriver.chrome.options import Options
# 实现规避检测
from selenium.webdriver import ChromeOptions


# 实现无头浏览器参数
chrome_options = ChromeOptions()
# 实现规避检测
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
chrome_options.add_experimental_option('excludeSwitches',['enable-automation'])

#没必要非得设置两个
c1 = webdriver.Chrome(options=chrome_options)
c1.get('https://www.baidu.com')
print(c1.page_source)
页: [1]
查看完整版本: selenium无头浏览器设置和规避问题