0

我必须使用 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();
}
4

1 回答 1

0

You can use like this. i tried and i got 10 as max value. Please accept the answer if it is working

public static void maxUserId() {

    int maxValue = getJsonPath(endpoint).jsonPath().get("userId.max()");
    System.out.println(maxValue);
}
于 2019-09-18T17:55:10.240 回答