如何循环调用我的登录功能?
Feature: Validate correct user login
Background:
* call read('classpath:cleanup.feature')
* def login = call read('classpath:account/init/init.user.feature')
请参阅有关数据驱动功能的文档。所以如果你有一个 JSON 数组,你可以这样做:
* def users = [{ username: 'foo1', password: 'bar1' }, { username: 'foo2', password: 'bar2' }]
* def login = call read('classpath:account/init/init-user.feature') users
编辑:由于问题不清楚,添加评论和另一个例子:
在里面init-user.feature
你可以做* print __arg
这是使用纯 JavaScript 函数迭代 JSON 数组的另一种方法:
* def users = [{ username: 'foo1', password: 'bar1' }, { username: 'foo2', password: 'bar2' }]
* def fun = function(array){ for (var i = 0; i < array.length; i++) karate.log(array[i]) }
* call fun users