如何禁用''您要为此网站保存密码吗?在selenium webdriver中的chrome弹出窗口

时间:2017-03-16 05:54:13

标签: java google-chrome selenium-webdriver

我的Chrome已升级到版本57,现在由于保存密码弹出,我的脚本无法正常工作。 我尝试从chrome设置,但每次我运行我的脚本时,保存的设置在新打开的浏览器中不起作用。任何解决方案?

1 个答案:

答案 0 :(得分:1)

它对我有用:

ChromeOptions options = new ChromeOptions();
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("credentials_enable_service", false);
options.setExperimentalOption("prefs", prefs);