如何通过单独的功能文件迭代参数列表?

时间:2019-03-06 06:32:34

标签: karate

如何通过传递ID列表来对此进行迭代。我在foo变量中有多个ID,我想为该foo变量中的每个ID调用 delete_project.feature

project.feature

* def foo = get response.data[*].id
* def del = call read('delete_project.feature') 

delete_project.feature

 Given path 'project', id
 When method DELETE
 Then status 200
 Then match response.status == 'success'

1 个答案:

答案 0 :(得分:2)

通过传递ID列表作为功能的输入,您实际上可以多次进行调用迭代功能。

parameter.property1

在空手道中引用data driven feature