唯一的计划块正在响应,但对于产品 ID 过滤器在放心中不起作用。 在邮递员工作也是如此
代码以获得响应,请放心
Response response = RestAssured
.given()
.baseUri(baseUri)
.header("content-type", "application/json")
.cookies("SESSIONID", cookie)
.get("api/members/"
+ 1
+ "/search?expand=plan,product");
请像这样给出,它已经过测试并且可以正常工作,并根据您的URI进行修改
@Test(已启用=真(
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();
}