简体   繁体   中英

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

lease review below Code:

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);


    }

}

Error on then statement: The method then() is undefined for the type FirstAPIClass

Also, Can i write the code without then, If i dont have to check anything just get response.

A very small mistake in your code. It is supposed to be get("/WorkExperience").then() and not get("/WorkExperience");then()

And you can also use it without a then() statement, so your code would be when().get("/WorkExperience"); and nothing more.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM