我有一个场景,我点击我的应用程序中的下载链接,它在我的本地驱动器中下载excel表。我正在使用selenium webdriver自动化并验证文件是否实际已下载。我能够下载文件并验证它在本地文件系统中的存在。但是如何在项目的资源目录中创建webdriver下载文件。
这就是我现在正在做的事情:
System.setProperty("webdriver.chrome.driver", Constants.Chrome_Driver_Path_Win);
HashMap<String, Object> chromePrefs = new HashMap<String, Object>();
chromePrefs.put("profile.default_content_settings.popups", 0);
chromePrefs.put("download.default_directory", "C:\\pixeldownload");
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("prefs", chromePrefs);
DesiredCapabilities cap = DesiredCapabilities.chrome();
cap.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true);
cap.setCapability(ChromeOptions.CAPABILITY, options);
driver = new ChromeDriver(cap);
现在我正在硬编码“C:\ pixeldownload”但是我想将文件放入我的java项目中的“resource”文件夹中。
chromePrefs.put(“download.default_directory”,“resource”)。将目的地作为“资源”并没有帮助我。我如何在“资源”目录中下载文件。
public boolean isFileDownloaded(String downloadPath,String fileName) {
boolean flag = false;
File dir = new File(System.getProperty("user.dir") + "\\resources\\downloads");
File[] dir_contents = dir.listFiles();
for (int i = 0; i < dir_contents.length; i++) {
if (dir_contents[0].getName().contains(fileName))
return flag=true;
}
return flag;
}
答案 0 :(得分:2)
如果要将文件下载到测试资源目录,请尝试:
String downloadDir = System.getProperty("user.dir") + "\\src\\test\\resources";
chromePrefs.put("download.default_directory", downloadDir);
我在我的项目中使用它。