Which method is used to send a DELETE request in RestAssured?
Which method is used to send a DELETE request in RestAssured? A) delete() B) get() C) post() D) put() Answer: A) delete() Explanation: The delete() method in RestAssured is used to send an HTTP DELETE request. This method is used when you want to delete a specified resource. For example: import static io.restassured.RestAssured.*; given(). when(). […]
Which method is used to send a DELETE request in RestAssured? Read More »