我想将一个文件保存到我的机器上,同时使用量角器自动化场景。我已经创建了一个autoIt脚本,但不知道如何在量角器中调用脚本。
将量角器与茉莉花一起使用
答案 0 :(得分:1)
1)将AutoIt脚本构建为.exe文件。
2)将EXE文件作为项目源代码的一部分
3)按照下面的代码示例,按shelljs
var shell = require('shelljs');
// relative file path for the autoit exe
var cmd = './autoit/xxx.exe';
var task = shell.exec(cmd);
if (task.code !== 0) {
shell.echo("execute AutoIt script fail: " + task.stdout);
shell.exit(1);
}