0
다음 응답의 유효성 검사가 중단되었습니다.JSON KARATE 응답 유효성 검사
가라데를 사용하여 요청을하면 다음 응답이 표시됩니다.이 응답을 확인하고 싶습니다.
My Response is: {
"response": [
{
"tagName": "CaseTag",
"value": "CaseTagMckAuto_TagValueOne",
"entityType": "Case",
"partitionId": 1,
"appId": 1,
"id": 46,
"tagId": 1,
"entityId": 1
},
{
"tagName": "CaseTag",
"value": "CaseTagMckAuto_TagValue",
"entityType": "Case",
"partitionId": 1,
"appId": 1,
"id": 45,
"tagId": 1,
"entityId": 1
}
]
}
내가 시도 :
And match response[0].tagName contains ['CaseTag']
Then match each res contains
...
{
{tagName: 'CaseTag', value: 'CaseTagMckAuto_TagValueOne',
entityType: 'Case', partitionId: 1, appId: 1,id: 46,
tagId: 1, entityId:1}
}
...
And match response[0] == {tagName: 'CaseTag', value:
'CaseTagMckAuto_TagValueOne', entityType: 'Case', partitionId: 1,
appId: 1,id: 46, tagId: 1, entityId:1}
All three statements fails json it is not valid json array when i try giving
And match response == {tagName: 'CaseTag', value:
'CaseTagMckAuto_TagValueOne', entityType: 'Case', partitionId: 1,
appId: 1,id: 46, tagId: 1, entityId:1}
그것이 문자열이 아닌 말한다. 이 전화의 유효성을 검사하도록 도와주세요.