Get started with Restassured
First Steps
Import the static methods needed: import static io.restassured.RestAssured.*; then write a request using the Given-When-Then structure.
given()
.when()
.get("https://reqres.in/api/users/2")
.then()
.statusCode(200)
.body("data.id", equalTo(2));
What Each Part Does
given() sets up request details, when() specifies the action (like a GET call), and then() defines what to verify in the response.
PreviousHow to use eclipse and understand Eclipse navigation panel
Next Introducing BDD Concepts In Restassured
Ready to master real-world software testing?
Learn manual and automation testing hands-on with mentor-led sessions.
.png)