从Feature文件1中,我正在读取json文件的内容并将其传递给serverpost.Feature
feature file 1
* def output = read('output.json')
* def result = call read('serverpost.feature') output
在功能文件2中,我尝试将路径设置为TC_ID,并从json数据请求主体为BODY。
但是,我无法使用以下功能设置路径。请协助
功能文件2
Given path '#(TC_ID)'
Given url 'http://myappurl.com:8080/mytestapp/Servers/Data/uploadServer/'
And request { some: '#(BODY)' } #### Here i am able to get the BODY data from JSON
When method post
Then status 200