如何禁用 chrome 的“保存密码"selenium webdriver(python)中的弹出窗口
问题描述
我想在我的 selenium 测试中禁用 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
弹窗 在您的 Selenium 测试中,您可以使用以下代码块:
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,
"profile.password_manager_enabled": False}
chrome_opt.add_experimental_option("prefs", prefs)
driver = webdriver.Chrome(chrome_options=chrome_opt, executable_path=r'C:UtilityBrowserDriverschromedriver.exe')
driver.get("https://google.com")
相关文章