[ { “X”: “shop”, "description": “ABC”, “Y”: { “Z”: { “T1”: “1”, “T2”: “2”} } }]
Now need to write a condition in karate that if (T1 == ‘1’ && T2 == ‘2’) then assert that “X” = “shop” How can we achieve this in a single line or in short way
Tried various methods but did not work