有没有办法从karate-config.js调用包含可重用特征文件路径的变量?

时间:2019-06-20 09:36:18

标签: karate

我开始使用空手道来创建API测试,并且我有多个可重复使用的功能文件。因此,我在karate-config.js中创建了包含每个可重用特征文件路径的变量,但是它对我不起作用? 有人可以帮我吗? 预先感谢。

1 个答案:

答案 0 :(得分:1)

您只需要在karate-config.js中执行此操作:

config.reusableFeature = 'classpath:tools/reusableFeature.feature';

然后,在任何功能中,您都可以这样称呼:

Then def response = call read(reusableFeature)