Validation fails when the array is null for karate jsonpath

38 Views Asked by At

The issue is with the validation. Here when I run the tests both the validations are passing, but I could see them in the response, the price is coming as null (price[]). My doubt is how its finding originalPrice when the price array itself is null.
In the validation, I have the below ones:

And match Response.data.abc[].price[] == '#array'
And match Response.data.abc[].price[].originalPrice == '#present'.

Sample response:
 "data": {
    "abc": [
 "abcnumber":001,
 "price": [],
]}
0

There are 0 best solutions below