How to Disable "Save Password for this website" Selenium Python Syntax How to Disable "Save Password for this website" Selenium Python Syntax selenium selenium

How to Disable "Save Password for this website" Selenium Python Syntax


Python implementation for the task you want to accomplish using selenium.

from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionschrome_options = Options()chrome_options.add_experimental_option('prefs', {    'credentials_enable_service': False,    'profile': {        'password_manager_enabled': False    }})driver = webdriver.Chrome(chrome_options=chrome_options)