我有一个记录列表:
{
"StatusCode": 200,
"Result": [
{
"Id": 15015600,
"Amount": 97.41,
"CreatedDate": "10/17/2018",
},
{
"Id": 15015602,
"Amount": 682.11,
"CreatedDate": "10/17/2018",
},
and so on...
当我知道 Amount 和 CreatedDate 时,我正在尝试制作一个返回“Id”值的语句。
int Id = given()
.when()
.get(/EndPoint))
.then()
.body("Result.findAll { it.Amount==97.41 }.CreatedDate", hasItems("10/17/2018"));
这甚至可能吗?