前边几篇文章讲解完如何上传文件,既然有上传,那么就可能会有下载文件。因此宏哥就接着讲解和分享一下:自动化测试下载文件。可能有的小伙伴或者童鞋们会觉得这不是很简单吗,还用你介绍和讲解啊,不说就是访问到下载页面,然后定位到要下载的文件的下载按钮后,点击按钮就可以了。其实不是这样的,且听宏哥徐徐道来:宏哥这里的下载是去掉下载弹框的下载。
(1)检索键盘鼠标自动化控制模块的导入 (2)可以无头化运行,不影响同时进行的其他的任务
为了不弹出下载框需要对Firefox的一些参数进行设置:
browser.download.dir:指定下载路径
browser.download.folderList:设置成 2 表示使用自定义下载路径;设置成 0 表示下载到桌面;设置成 1 表示下载到默认路径
browser.download.manager.showWhenStarting:在开始下载时是否显示下载管理器
browser.helperApps.neverAsk.saveToDisk:对所给出文件类型不再弹出框进行询问
package lessons;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.By;
/**
* @author 北京-宏哥
*
* @公众号:北京宏哥
*
* @《手把手教你》系列技巧篇(五十六)-java+ selenium自动化测试-下载文件-上篇(详细教程)
*
* @2021年12月17日
*/
public class FirefoxDownload {
public static void main(String[] args)throws InterruptedException {
System.setProperty("webdriver.gecko.driver", ".\\Tools\\geckodriver.exe");
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.dir", "D:\\test2");
profile.setPreference("browser.download.manager.showWhenStarting", false);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/octet-stream");
FirefoxOptions firefoxOptions = new FirefoxOptions();
firefoxOptions.setProfile(profile);
// 打开一个带上门设置好profile的火狐浏览器
WebDriver driver = new FirefoxDriver(firefoxOptions);
//WebDriver driver =new FirefoxDriver(profile);
driver.manage().window().maximize();
driver.get("https://pypi.org/project/selenium/#files");//到目标网页
Thread.sleep(10000);
WebElement myElement = driver.findElement(By.xpath("//a[contains(text(),'selenium-4.1.0-py3-none-any.whl')]"));
myElement.click();//点击下载
Thread.sleep(10000);
System.out.println("browser will be close");
driver.quit();
}
}
1.运行代码,右键Run AS->Java Appliance,控制台输出,如下图所示:
2.运行代码后电脑端的浏览器的动作,如下小视频所示:
Firefox需要针对每种文件类型进行设置,对于不知道文件类型的可以用抓包软件进行抓包,F12找到导致弹框的请求,查看该请求response的header,不出意外的话content-type应该就是你要的结果。具体查看文件类型的方法如下: