How can I assert my properties inside the "description" array using the rest assured .body() method.
Example:
.body ("[0] .userType", equalTo (1)); // error
Here is my current JSON data which I want to assert with:
{
"validSession": true,
"value": "xxx",
"description": [
{
"userType": 1,
"userTypeDescription": "xxx",
"uname": "xx",
"distributorId": 1
}
]}