我的要求是,我想将第一个功能文件的响应作为输入传递给第二个功能文件。第一个功能文件响应是一个json列表,因此可以预期的是应该为json列表的每个值调用第二个功能文件。
Feature:
Scenario: identify the reference account
* def initTestData = read('../inputData.feature')
* def accountData = $initTestData.response
* print “Account Details”+accountData // output of this is a json list [“SB987658”,”SB984345”]
* def reqRes = karate.call('../Request.feature', { accountData : accountData })
在Request.feature文件中,我们正在动态构建网址
Given url BaseUrl + '/account/'+'#(accountId)' - here am facing issue http://10.34.145.126/account/[“SB987658”,”SB984345”]
我的要求是Request.feature应该为“ accountData” Json列表中的每个值调用
我尝试过:
* def resAccountList = karate.map(accountData, function(x){accountId.add(x) })
* def testcaseDetails = call read('../requests/scenarios.feature') resAccountList.accountId
结果相同,accountId被替换为[“ SB987658”,“ SB984345”]
我需要两次调用Request.feature http://10.34.145.126/account/SB987658 http://10.34.145.126/account/SB984345,并使用每个调用对后续功能文件调用的响应。
答案 0 :(得分:2)
我认为您在karate.map()
中有一个错误,请看以下示例:
* def array = ['SB987658', 'SB984345']
* def data = karate.map(array, function(x){ return { value: x } })
* def result = call read('called.feature') data
called.feature
是:
Feature:
Scenario:
Given url 'https://httpbin.org'
And path 'anything', value
When method get
Then status 200
发出2个请求:
https://httpbin.org/anything/SB987658
https://httpbin.org/anything/SB984345