我在Java中使用REST-Assured,以及我如何获取response
对象:
Response response = RestAssured.given().contentType(ContentType.JSON).header(header_name).get();
我想知道是否有任何方法可以从GET
对象中提取所使用的方法名称(本例中为response
)。
答案 0 :(得分:1)
如果您有兴趣知道请求的方法说GET或POST,请在下面的代码中打印控制台上的方法
given().log().method()
.when()
.get("https://www.google.co.in/").then().statusCode(200);
希望这有帮助