python selenium关闭正受到自动测试软件的控制

selenium打开浏览器默认会有如图所示的信息栏:
在这里插入图片描述
网上博客一堆重复转载的都是使用: disable-infobars来禁用, 新版本已经无法生效了。

最新的操作方式, 如代码所示:

from selenium import webdriver

driver_path = '../driver.exe'
options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches", ['enable-automation'])
browser = webdriver.Chrome(options=options, executable_path=driver_path)
browser.get('https://www.baidu.com')

你可能感兴趣的:(Python)