如何在opentest中从文本文件中读取数据



我尝试了下面的代码,但它抛出了一个错误,

由::1 ReferenceError引起:"要求";未定义

fs.readFile('test.txt', 'utf-8',function(err,data){
if (err) {
return  $log(err);
}
$log(data);
})

您正在尝试使用Node.js API,这在OpenTest中是不可用的。读取文本文件的正确方法是使用ReadTextFile关键字:

- description: Read text file from disk
action: org.getopentest.actions.files.ReadTextFile
args:
file: $tempDir + "/test.txt"
encoding: UTF-8
- script: |
var fileContents = $output.text;
$log(fileContents)

相关内容

  • 没有找到相关文章

最新更新