我正在使用Squish进行测试自动化。
压扁服务器在目标设备上运行。客户端在PC上运行。 命令(在测试脚本中)从客户端发送到服务器以供执行。
在其中一个操作之后,我需要检查文件是否在目标设备上的特定位置创建。
此处不涉及HTML或浏览器。
答案 0 :(得分:0)
https://stackoverflow.com/a/12226476/3678718
function checkIfRemoteFileExists(fileToCheck)
{
var tmp=new Image;
tmp.src=fileToCheck;
if(tmp.complete)
alert(fileToCheck+" is available");
else
alert(fileToCheck+" is not available");
}
答案 1 :(得分:0)
Squish提供了一个"文件"具有"存在的对象"方法
test.verify(File.exists(filename), "File should exist after what I just went through");
https://doc.froglogic.com/squish/6.0/rgs-js.html#js-File.exists-function