We discussed the Jenkins pipeline in one of the previous articles. Here, I have Postman collections to run using Jenkins. We know that the Postman collections are the set of API requests for different purposes created using the Postman tool. In this article, we are going to discuss the Jenkins configuration for Postman... Continue Reading →
Validate Large Number of Response Data in Postman
We know that validation of response data from an API is very important at the prior stage of functional and also during the QA execution stage. You may need to validate the response data from API against the AUT or you may need to validate the response data from API against the database... Continue Reading →
API Test Reporting
We all know that Postman is a great tool when trying to dissect RESTful APIs made by others or test ones you have made yourself. It offers a sleek user interface with which to make HTML requests, without the hassle of writing a bunch of code just to test an API's functionality. This... Continue Reading →
Testing REST endpoints using REST Assured
REST Assured is a Java library that provides a domain-specific language for writing powerful, maintainable tests for RESTful APIs. REST Assured supports the familiar Given/When/Then syntax from behavior-driven development (BDD), resulting in a test that is easy to read and takes care of everything with just a single line of code. Here I... Continue Reading →