ui自动化利用WatchService去给下载事件进行断言

本文介绍了一种在UI自动化测试中,利用Java的WatchService监控指定目录,以判断文件是否成功下载的方法。通过监听ENTRY_CREATE事件,当下载的文件与预期文件名匹配时,可以确认文件下载成功。同时,提供了辅助方法isFileDownloaded_Ext作为备用检查手段,通过遍历目录查找文件是否存在。
摘要由CSDN通过智能技术生成

项目中,存在点击后下载的业务流程,而selenium本身没有很好的方法去断言文件是否下载成功。此时我们可以通过WatchService去监听目录文件,来确定文件是否下载成功。

//监听所下载的文件名

public static String getDownloadedDocumentName(String filepath, String filename)

{

String downloadedFileName = null;

boolean valid = true;

boolean found = false;

//default timeout in seconds

long timeOut = 30;

try

{

Path downloadFolderPath = Paths.get(filepath);

WatchService watchService = FileSystems.getDefault().newWatchService();

downloadFolderPath.register(watchService, StandardWatchEventKinds.ENTRY_CREATE);

long startTime = System.currentTimeMillis();

do

{

WatchKey watchKey;

watchKey = watchService.poll(timeOut,TimeUnit.SECONDS);

long currentTime = (System.currentTimeMillis()-startTime)/1000;

if(currentTime>timeOut)

<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值