如何解决 then() 上的错误。在休息 API

How can I solve error on then(). in Rest API

租赁审查代码如下:

package API_Testing;

import io.restassured.RestAssured;
import static io.restassured.RestAssured.given;


public class FirstAPIClass {

    public static void main(String[] args) 

    {
        RestAssured.baseURI="http://localhost:5100";    
        given().
        header("tenantId","Augusta-PT").
        when().
        get("/WorkExperience");     
        then().assertThat().statusCode(200);


    }

}

then 语句出错:未定义方法 then() 类型 FirstAPIClass

此外,我可以不用 then 编写代码吗,如果我不需要检查任何东西,只需得到响应即可。

您的代码中有一个非常小的错误。它应该是 get("/WorkExperience").then() 而不是 get("/WorkExperience");then()

您也可以在没有 then() 语句的情况下使用它,因此您的代码将是 when().get("/WorkExperience");,仅此而已。