仅计划块会响应,但productId过滤器在“放心”状态下不起作用。
邮递员也一样

使响应放心的代码

Response response = RestAssured
                .given()
                .baseUri(baseUri)
                .header("content-type", "application/json")
                .cookies("SESSIONID", cookie)
                .get("api/members/"
                        + 1
                        + "/search?expand=plan,product");

最佳答案

请这样给出,它已经过测试并且可以根据您的URI进行修改

@Test(已启用= true)

    public  void performMultipleQueryparametrs() {
        RestAssured.baseURI = "https://reqres.in/";
        RestAssured.basePath = "api/";
        given().urlEncodingEnabled(false).contentType(ContentType.JSON). with().queryParam("page", 2).queryParam("id", 9).
        when().get("users").then().statusCode(200).log().all();
    }

10-06 03:21