Data extraction from response.Method 3

data extraction rest

Third way is similar to first one.Here we get arraylist of ids ,firstNames,lastNames etc by passing ... Read More

Logging response from server

loggin response rest

The way we logged our get or post request we can even log the response we get from server. Only dif ... Read More

Get request using rest assured

Get request rest

Crud operation examples uisng Rest assured ``` package CrudOperationExamples; import static i ... Read More

Post data using rest assured. Method 1

post data rest

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 example using rest assured

delete request rest

Delete request using rest assured ``` package CrudOperationExamples; import static io.resta ... Read More

Schema validation in rest assured

scheam valodations rest

We can get a json schema for any of our json response by going to this website. ``` https://www. ... Read More

Data extraction from response.Method 1

data extraction rest

There are various ways of reading response from server and retrieving data out of it. We can use ... Read More

Soap vs Rest

soap rest

Web services – user sends request to server , gets response back . Two types of commonly used prot ... Read More

More differences between soap and rest

soap rest differences

Soap is a protocol it follows rules for requests and responses i.e requests and responses have envel ... Read More

Hard soft assertions using hamcrest library

hard soft assertions hamcrest

Here we will see how to put multiple validations all together using hamcrest library. Hard Assert ... Read More