I am running automation tests using Chrome, Chromedriver 135.0.7049.42 and Selenium.WebDriver 4.30
During the test, I enter the password and then the "Google Password Manager" dialog appears.
The dialog remains displayed, which blocks my further tests.
Please advise me how to disable this dialog from appearing?
I am running automation tests using Chrome, Chromedriver 135.0.7049.42 and Selenium.WebDriver 4.30
During the test, I enter the password and then the "Google Password Manager" dialog appears.
The dialog remains displayed, which blocks my further tests.
Please advise me how to disable this dialog from appearing?
Share Improve this question asked 18 hours ago MajklMajkl 1871 gold badge4 silver badges11 bronze badges1 Answer
Reset to default -1Try this:
options.add_experimental_option("prefs", {
"credentials_enable_service": False,
"profile.password_manager_enabled": False
})
options.add_argument("--disable-save-password-bubble")