如何在使用Selenium下载时禁用或接受Chrome弹出窗口

时间:2018-01-12 04:04:04

标签: java google-chrome selenium

我知道这个问题在这里被问到How to disable 'This type of file can harm your computer' pop up 但该帖子还说,给定的解决方案并不适用于所有的chrome版本。

我尝试了所有可能的东西仍然无法禁用弹出或选择保留文件按钮。我正在使用chrome版本62.0.3202.89(官方构建)(32位)

我使用下面的代码但没有工作...... :(

    HashMap<String, Object> chromePrefs = new HashMap<String, Object>();
    chromePrefs.put("profile.default_content_settings.popups", 0);
    chromePrefs.put("download.default_directory", downloadDir);
    options.setExperimentalOption("prefs", chromePrefs);
    chromePrefs.put("safebrowsing.enabled", "true");
    options.addArguments("--safebrowsing-disable-download-protection");
    //options.addArguments("--test-type");
   // options.addArguments("--disable-extensions"); //to disable browser extension popup
    //options.addArguments("--safebrowsing-disable-extension-blacklist");

如果有人知道如何在弹出Chrome警告说“#34;这种类型的文件可能会损害您的计算机”时,如果有人知道如何开始下载请帮忙。你还想保留jar吗?&#34;

1 个答案:

答案 0 :(得分:0)

DesiredCapabilities cap;    

ChromeOptions选项=新的ChromeOptions();

    String downloadFilepath = "K:\\";
    HashMap<String, Object> setPath = new HashMap<String, Object>();    
    setPath.put("download.default_directory", downloadFilepath); //to set path 
    setPath.put("safebrowsing.enabled", "false"); // to disable security check eg. Keep or cancel button

    HashMap<String, Object> chromeOptionsMap = new HashMap<String, Object>();
    options.setExperimentalOption("prefs", setPath);
    options.addArguments("--disable-extensions"); //to disable browser extension popup


    cap = DesiredCapabilities.chrome();
    cap.setCapability(ChromeOptions.CAPABILITY, chromeOptionsMap);
    cap.setCapability(ChromeOptions.CAPABILITY, options);