def open_chrome(self): from selenium.webdriver.chrome.options import Options from selenium import webdriver ''' 自定义chrome启动参数 :return: ''' chrome_options = Options('--disable-password-manager-reauthentication') # 获取浏览器名称和版本号 browser_version = MyClass.get_browser_version(self,browser='chrome') print("browser_version:",browser_version) if int(browser_version) < 76 : # chrome76以下禁用chrome受自动软件控制 chrome_options.add_argument('disable-infobars') else: # 下面2行chrome76及以上禁用chrome受自动软件控制 chrome_options.add_experimental_option("useAutomationExtension", False) chrome_options.add_experimental_option("excludeSwitches", ["enable- automation"]) print("chrome_options:",chrome_options) return chrome_options增加关闭保存密码提示参数
时间: 2024-03-13 12:47:42 浏览: 396
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
你的问题是如何增加关闭保存密码提示参数?可以在定义chrome启动参数时,添加`--disable-save-password-bubble`参数,如下所示:
```
chrome_options = Options()
chrome_options.add_argument('--disable-save-password-bubble')
```
这样就可以禁用浏览器的保存密码提示了。
阅读全文