Example of a post request using rest assured ``` package CrudOperationExamples; import ... Read More
We have seen earlier than we can log the entire req that we are sending to the server. But question ... Read More
Third way is similar to first one.Here we get arraylist of ids ,firstNames,lastNames etc by passing ... Read More
Now lets see how we can check JSON assertions using JSONASSERT library. For that we need to have sk ... Read More
For rest assured downloads and documentation we can go to the website – Rest-assured.io The impor ... Read More
Delete request using rest assured ``` package CrudOperationExamples; import static io.resta ... Read More
Crud operations in web services are -Create –Retrieve – update –delete In http the above 4 crud o ... Read More
Lets see an example where courses is a list of maps . For this example in Student class we make a ... Read More
Second way to extra data from response is using Json extractor object. Here we make an object of ... Read More
Better example for request and response in which we can send request in just one line. We can do ev ... Read More