Get request using rest assured

Get request rest

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

Simple request and response example

request response rest

Simple request and respone example using rest assured. ``` package basics; import org.testng. ... Read More

Post data using rest assured. Method 4

post data rest

4.Method is using OOPs concepts.In this method we pass objects of a class as post. But what kind of ... 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-Ui tool

soap rest

Soap-ui is used for test soap protocols.Soap has paid and free versions. In free version we can’t re ... Read More

Comparing responses using hamcrest library

comparsions hamcrest

Next lets discuss hamcrest librabry.We have seen above that we can compare an actual result we got f ... 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

Post data using rest assured. Method 4. If one form field is a map of key value pairs

post data rest

Second method –Here courses is not a list but instead a map of key value pairs.So we create a Studen ... 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

Post data using rest assured. Method 4.If one field is a list of maps and each map furhter contains a list

post data rest

If courses contains list of maps and each map object further contains a list of topic.So we have li ... Read More