有人可以解释一下最后两行代码吗?我已经搜索了许多网站寻找答案,但没有明确的解释。
ChromeOptions options = new ChromeOptions();
HashMap<String, Object> chromePrefs = new HashMap<String, Object>();
chromePrefs.put("profile.default_content_settings.popups", 0);
options.setExperimentalOptions("prefs", chromePrefs);
设置实验性选项。对于尚未通过 ChromeOptions API 公开的新 ChromeDriver 选项很有用。
它基本上允许我们在 Chrome 开发人员发布之前测试特定功能。
还检查 - 此链接中给出了一个例子