如何隐藏警告“此类文件可能会损害您的计算机"使用带有 Selenium Java 的 Chrome Chromedriver 79 下载 .xml 文件时 [英] How to hide the warning "This type of file can harm your computer" while downloading .xml file using Chrome Chromedriver 79 with Selenium Java

查看:26
本文介绍了如何隐藏警告“此类文件可能会损害您的计算机"使用带有 Selenium Java 的 Chrome Chromedriver 79 下载 .xml 文件时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尽管将 safebrowsing.enabled 设置为 true/false,但警告 ...这种类型的文件可能会损害您的计算机... 仍在浏览器中显示.如何隐藏这些信息?

解决方案

启用使用 Chrome 下载文件/

Despite setting safebrowsing.enabled to true / false, the warning ...This type of file can harm your computer... is still being displayed in browser. How to hide this information?

解决方案

To enable downloading of file using Chrome/ChromeDriver hiding the warning This type of file can harm your computer you need to:

  • Add the preferences:
    • download.default_directory
    • download.prompt_for_download
    • download.extensions_to_open
    • safebrowsing.enabled
  • As well as add the following arguments to whilelist:
    • --safebrowsing-disable-download-protection
    • safebrowsing-disable-extension-blacklist

Demonstration

To demonstrate downloading using , and through I have clicked on the first Download link in the webpage http://www.landxmlproject.org/file-cabinet and your effective solution will be:

  • Code Block:

    System.setProperty("webdriver.chrome.driver", "C:\Utility\BrowserDrivers\chromedriver.exe");
    Map<String, Object> prefs = new HashMap<String, Object>();
    prefs.put("download.default_directory", "C:/Utility/Downloads/");
    prefs.put("download.prompt_for_download", false);
    prefs.put("download.extensions_to_open", "application/xml");
    prefs.put("safebrowsing.enabled", true);
    ChromeOptions options = new ChromeOptions();
    options.setExperimentalOption("prefs", prefs);
    options.addArguments("start-maximized");
    options.addArguments("--safebrowsing-disable-download-protection");
    options.addArguments("safebrowsing-disable-extension-blacklist");
    WebDriver driver =  new ChromeDriver(options); 
    driver.get("http://www.landxmlproject.org/file-cabinet");
    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//span[text()='MntnRoad.xml']//following::span[1]//a[text()='Download']"))).click();
    

  • Browser Snapshot:

这篇关于如何隐藏警告“此类文件可能会损害您的计算机"使用带有 Selenium Java 的 Chrome Chromedriver 79 下载 .xml 文件时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆