如何禁用Chrome的“保存密码"硒webdriver中的弹出窗口(python) [英] How to disable chrome's "save password" popup in selenium webdriver (python)

查看:344
本文介绍了如何禁用Chrome的“保存密码"硒webdriver中的弹出窗口(python)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在硒测试出现时在Chrome中禁用Chrome中的保存密码"弹出窗口.我通过ChromeOptions()找到了一种方法,但是找不到使弹出窗口消失所必需的参数或首选项.

I want to disable the "save password" popup in chrome in my selenium test whenever it appears. I found a way through ChromeOptions(), but can't find the argument or preference necessary to make the popup disappear.

from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("argument")

推荐答案

要在硒测试中的 Google Chrome 中禁用 save password 弹出窗口,可以使用以下代码块:

To disable the save password popup in Google Chrome within your Selenium Tests you can use the following piece of code block:

from selenium import webdriver

chrome_opt = webdriver.ChromeOptions()
prefs = {"credentials_enable_service", False}
prefs = {"profile.password_manager_enabled" : False}
chrome_opt.add_experimental_option("prefs", prefs)
driver = webdriver.Chrome(chrome_options=chrome_opt, executable_path=r'C:\Utility\BrowserDrivers\chromedriver.exe')
driver.get("https://google.com")

这篇关于如何禁用Chrome的“保存密码"硒webdriver中的弹出窗口(python)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆