• <small id='DsgXz'></small><noframes id='DsgXz'>

    <tfoot id='DsgXz'></tfoot>
    <legend id='DsgXz'><style id='DsgXz'><dir id='DsgXz'><q id='DsgXz'></q></dir></style></legend>

      <bdo id='DsgXz'></bdo><ul id='DsgXz'></ul>

        <i id='DsgXz'><tr id='DsgXz'><dt id='DsgXz'><q id='DsgXz'><span id='DsgXz'><b id='DsgXz'><form id='DsgXz'><ins id='DsgXz'></ins><ul id='DsgXz'></ul><sub id='DsgXz'></sub></form><legend id='DsgXz'></legend><bdo id='DsgXz'><pre id='DsgXz'><center id='DsgXz'></center></pre></bdo></b><th id='DsgXz'></th></span></q></dt></tr></i><div id='DsgXz'><tfoot id='DsgXz'></tfoot><dl id='DsgXz'><fieldset id='DsgXz'></fieldset></dl></div>

        如何禁用 chrome 的“保存密码"selenium webdrive

        时间:2023-10-08
            <i id='pcc7b'><tr id='pcc7b'><dt id='pcc7b'><q id='pcc7b'><span id='pcc7b'><b id='pcc7b'><form id='pcc7b'><ins id='pcc7b'></ins><ul id='pcc7b'></ul><sub id='pcc7b'></sub></form><legend id='pcc7b'></legend><bdo id='pcc7b'><pre id='pcc7b'><center id='pcc7b'></center></pre></bdo></b><th id='pcc7b'></th></span></q></dt></tr></i><div id='pcc7b'><tfoot id='pcc7b'></tfoot><dl id='pcc7b'><fieldset id='pcc7b'></fieldset></dl></div>

            <small id='pcc7b'></small><noframes id='pcc7b'>

            • <bdo id='pcc7b'></bdo><ul id='pcc7b'></ul>
              <legend id='pcc7b'><style id='pcc7b'><dir id='pcc7b'><q id='pcc7b'></q></dir></style></legend>

                <tbody id='pcc7b'></tbody>

              1. <tfoot id='pcc7b'></tfoot>
                1. 本文介绍了如何禁用 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")
                  

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

                  上一篇:Chrome 打开时显示“数据;"带硒铬驱动器 下一篇:InvalidArgumentException:消息:无效参数:使用 ChromeDri

                  相关文章

                  最新文章

                  <legend id='azHTG'><style id='azHTG'><dir id='azHTG'><q id='azHTG'></q></dir></style></legend>

                    <i id='azHTG'><tr id='azHTG'><dt id='azHTG'><q id='azHTG'><span id='azHTG'><b id='azHTG'><form id='azHTG'><ins id='azHTG'></ins><ul id='azHTG'></ul><sub id='azHTG'></sub></form><legend id='azHTG'></legend><bdo id='azHTG'><pre id='azHTG'><center id='azHTG'></center></pre></bdo></b><th id='azHTG'></th></span></q></dt></tr></i><div id='azHTG'><tfoot id='azHTG'></tfoot><dl id='azHTG'><fieldset id='azHTG'></fieldset></dl></div>

                  1. <tfoot id='azHTG'></tfoot>

                      <small id='azHTG'></small><noframes id='azHTG'>

                      • <bdo id='azHTG'></bdo><ul id='azHTG'></ul>