Crud operations

crud operations rest

Crud operations in web services are -Create –Retrieve – update –delete In http the above 4 crud o ... 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 actual response from server using JSONAssert

jsonassert rest

Previosuly we have seen how to compare two Strings using JSONAssert. Now to compare an actual json r ... Read More

Logging just the body,paramters or logging based on response code

logging rest

In the same way we can log paramters or log body from a get or post request . We can even log only i ... Read More

Post data using rest assured. Method 4.If one field is a list of maps

post data rest

Lets see an example where courses is a list of maps . For this example in Student class we make a ... Read More

Put request using rest

put request rest assured

Example of put request using rest ``` package CrudOperationExamples; import static io.restass ... Read More

JSON assertions using JSONASSERT library

jsonassert rest

Now lets see how we can check JSON assertions using JSONASSERT library. For that we need to have sk ... 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

Getting started with rest-assured project

dependencies project rest

For rest assured downloads and documentation we can go to the website – Rest-assured.io The impor ... Read More

Post data using rest assured. Method 3

post data rest

Third way is to create a java util hash map and paste name email programme etc as key value pairs to ... Read More