我的Chrome已升级到版本57,现在由于保存密码弹出,我的脚本无法正常工作。 我尝试从chrome设置,但每次我运行我的脚本时,保存的设置在新打开的浏览器中不起作用。任何解决方案?
答案 0 :(得分:1)
它对我有用:
ChromeOptions options = new ChromeOptions();
Map<String, Object> prefs = new HashMap<String, Object>();
prefs.put("credentials_enable_service", false);
options.setExperimentalOption("prefs", prefs);