我必须使用 RestAssured 和 Gpath 语法获得 userId 的最大值。我不知道在那之后我应该在正文中输入什么。
我尝试了很多方法,但它不起作用。
@BeforeClass
public void setUp() {
endpoint = "https://jsonplaceholder.typicode.com/posts/";
}
public static Response getJsonPath(String endpoint) {
return
when().
get(endpoint).
then().
statusCode(200).
contentType(ContentType.JSON).extract().response();
}
@Test
public void maxUserId() {
Response response = getJsonPath(endpoint)
.then()
.assertThat()
.body();
}