假设我在Utility js文件中保存了以下函数。
function getCurrentDate(){
return 'date';
}
function getMonth(){
return 'Oct';
}
请帮助我在功能文件中如何访问这些方法。
我尝试了以下代码,但它无效。
* def fun = call read('Utility.js')
* def result = getData()
or
* def result = fun.getData()
答案 0 :(得分:3)
在Karate中,JS文件只能包含一个函数而且不需要名称,请仔细查看示例。
我真的不建议将多个功能合并到一个文件中,这只会让维护起来更加困难。但如果你真的坚持,这就是:
function() {
return {
getCurrentDate: function(){ return 'date' },
getMonth: function(){ return 'month' }
}
}
编辑:这里有一个更好的答案:https://stackoverflow.com/a/49384760/143475