Selenium.WebDriver.UndetectedChromeDriver
Selenium.WebDriver.UndetectedChromeDriver copied to clipboard
How to disable password_manager
When I use chromedriver
ChromeOptions options = new ChromeOptions();
options.AddUserProfilePreference("credentials_enable_service", false);
options.AddUserProfilePreference("profile.password_manager_enabled", false);
How to disable password_manager by use UndetectedChromeDriver?