需要帮助解决RestAssured中的以下问题。为什么我在pathParam((方法&如何解决这个
import static io.restassured.RestAssured.given;
import static io.restassured.RestAssured.*;
public class TC005_GetRequest {
@Test
public void getReaponse() {
Response response = given()
.pathParam("R1", "albums")
.when()
.get("https://jsonplaceholder.typicode.com/{R1}")
.then()
.log().all();
}
}
因为存在不匹配的类型。
-
.then().log().all()
->返回ValidatableResponse
实例 -
您想要的是
Response response
要修复此问题:
.then().log().all();
->.then().log().all().extract().response();