Third way is similar to first one.Here we get arraylist of ids ,firstNames,lastNames etc by passing ... Read More
The way we logged our get or post request we can even log the response we get from server. Only dif ... Read More
Crud operation examples uisng Rest assured ``` package CrudOperationExamples; import static i ... Read More
In order to create a new record in our app using post or in order to post to any rest app in general ... Read More
Delete request using rest assured ``` package CrudOperationExamples; import static io.resta ... Read More
We can get a json schema for any of our json response by going to this website. ``` https://www. ... Read More
There are various ways of reading response from server and retrieving data out of it. We can use ... Read More
Web services – user sends request to server , gets response back . Two types of commonly used prot ... Read More
Soap is a protocol it follows rules for requests and responses i.e requests and responses have envel ... Read More
Here we will see how to put multiple validations all together using hamcrest library. Hard Assert ... Read More