Back to Course
Rest Assured

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.

Ready to master real-world software testing?

Learn manual and automation testing hands-on with mentor-led sessions.

Explore Course