In previous posts we have seen how to send different kinds of request and extracting data, and validating it. Now…
In this tutorial we will send API request with Query Parameter using REST-Assured. so What is Query Parameter ? The…
To learn about JSON schema validation we will learn what is a Schema: Schema is the structure behind data organization.…
This tutorial will help you Extracting values from JSON response. We will learn How to fetch values from JSON response.…
The syntax for Delete request is no different, we just have to call the delete() method instead of get(). Also…
PUT request is modeled as an insert or update. The difference between POST and PUT is, POST will return status…
In previous tutorial we used postman-echo API, in this tutorial we will use JSONPlace Holder, to send post request using…
How to send GET request using REST-Assured and validate the response. GET is used to request a resource from the…
REST is build on top of HTTP protocol. It uses HTTP methods to communicate over the internet. Using different HTTP…
We will learn How to Install TestNG in Eclipse for creating a good Testing Framework, it will help us write…