selenium+python自动化86-Chrome正在受到自动软件的控制

Posted jason89

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+python自动化86-Chrome正在受到自动软件的控制相关的知识,希望对你有一定的参考价值。

出现问题

1.用selenium启动浏览器出现‘Chrome正在受到自动软件的控制’

技术分享图片

2.如果不想看到这种讨厌的提示语,启动浏览器时候加个配置就行了

disable-infobars

1.在浏览器配置里加个参数,忽略掉这个警告提示语

option = webdriver.ChromeOptions()
option.add_argument(‘disable-infobars‘)

参考代码

# coding:utf-8
from selenium import webdriver

# 加启动配置
option = webdriver.ChromeOptions()
option.add_argument(disable-infobars)

# 打开chrome浏览器
driver = webdriver.Chrome(chrome_options=option)
driver.get("https://www.cnblogs.com/yoyoketang")
print(driver.title)

 


以上是关于selenium+python自动化86-Chrome正在受到自动软件的控制的主要内容,如果未能解决你的问题,请参考以下文章

基于Python+selenium+Chrome的网页自动化教程

Selenium_python自动化环境搭建篇

Selenium2+python自动化2-pip降级selenium3.0

Selenium2+python自动化2-pip降级selenium3.0

python+selenium+chrome网页自动化

[Selenium自动化测试学习]Python+Selenium环境搭建