如何使用空手道API解析以下JSON响应

时间:2018-09-13 03:22:03

标签: karate

任何人都可以在空手道API中放弃以下响应

在这里,我想从响应中提取partNumber和productTitle,其中响应中的初始数字是动态性质,对于每种get方法,数字都会变化。

{“ items”:{'41651625424':{itemCore:{partNumber:'1234567',productTitle:'空手道API测试'}}}}

1 个答案:

答案 0 :(得分:0)

有多种方法,但是在这种情况下,对我来说最好的选择是使用JsonPath:

* def response = { "items": { '41651625424': { itemCore: { partNumber: '1234567', productTitle: 'Karate API Testing' }}}}
* def itemCore = get[0] response..itemCore
* match itemCore == { partNumber: '1234567', productTitle: 'Karate API Testing' }

请参阅文档:https://github.com/intuit/karate#get-plus-index