我需要得到一个数组元素的code
,这个数组元素有field
== firstName
:
{
"errors": [
{
"field": "firstName",
"code": "NotBlank"
},
{
"field": "lastName",
"code": "NotBlank"
}
]
}
对于JsonPath,实现方法是$.errors[?(@.field == firstName)].code
。如何在Rest Assured中使用其GPath语法实现同样的功能?
2条答案
按热度按时间p1tboqfb1#
我还没试过,但从我的脑海里,这应该是工作:
ghhkc1vu2#
errors.find{e -> e.field == 'firstName'}.code