在 REST Assured 中,如何检查响应中是否存在字段?
2022-09-01 09:26:59
如何确保我的响应(假设它是 JSON 格式)包含或不包含特定字段?
when()
.get("/person/12345")
.then()
.body("surname", isPresent()) // Doesn't work...
.body("age", isNotPresent()); // ...But that's the idea.
我正在寻找一种方法来断言我的JSON是否包含年龄和姓氏字段。