Quiz: Request Methods
In this lesson, your knowledge of automating various HTTP methods using RestAssured will be evaluated through a quiz.
We'll cover the following...
We'll cover the following...
HTTP Method request using RestAssured.
1.
Which of the following options are correct?
(You can select multiple correct answers)
A.
RestAssured.given().get(url).andReturn();
B.
RestAssured.given().get();
C.
RestAssured.when().get(url).andReturn();
D.
None of the above
1 / 5
That is all about ...