在 RestAssured get request 中为 pathParam() 方法获取红色下划线错误以及如何解决此问题



需要帮助解决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();

相关内容

  • 没有找到相关文章

最新更新