Disable Chrome password manager?

Hello, I wonder if it’s possible to disable Chrome password manager?

With Selenium we can do like:

ChromeOptions options = new ChromeOptions();

//disable password manager
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("credentials_enable_service", false);
prefs.put("profile.password_manager_enabled", false);
options.setExperimentalOption("prefs", prefs);

caps.setCapability(ChromeOptions.CAPABILITY, options);

I would like to know if we can do the same thing with Katalon? Thanks!

Thank you so much! :slight_smile:

Unable to see the solution … in the above thread.

1 Like

Mee too. :frowning: