Java日常学习

java+selenium,关闭chrome的通知弹窗

2018-11-22  本文已影响0人  LeslieFind
public class Login {
    public static void main(String[] args) {
        String url = "https://www.baidu.com/";

        Map<String, Object> prefs = new HashMap<String, Object>();
        prefs.put("profile.default_content_setting_values.notifications", 2);
        ChromeOptions options = new ChromeOptions();
        options.setExperimentalOption("prefs", prefs);
        WebDriver driver = new ChromeDriver(options);
    }
}
上一篇 下一篇

猜你喜欢

热点阅读