一:自动化测试的时候,启动浏览器出现‘Chrome正在受到自动软件的控制’,怎么样隐藏,今天学习分享:
在浏览器配置里加个参数,忽略掉这个警告提示语,disable_infobars
option = webdriver.ChromeOptions()
参考代码:
还有可能是你的Chrome浏览器和驱动不匹配
chrome和驱动对应版本号可以查看链接:https://blog.csdn.net/huilan_same/article/details/51896672
由于笔者的版本是67.0,所以应该下的驱动是V2.40
下载的地址为:http://npm.taobao.org/mirrors/chromedriver/ 或者http://chromedriver.storage.googleapis.com/index.html
也可参考这篇:https://blog.csdn.net/weixin_44318830/article/details/103339273