August 2019 – Make Selenium Easy

The dictionary meaning of the English word “Agile” is “Able to move quickly and easily”. You will see later in this post, how this definition is true for Software development. Waterfall methodology is a traditional Software Development Life Cycle (SDLC) which is more a linear sequential design pattern to develop software. A SDLC model consists […]

So we have learnt two ways of sharing a Postman collection:- Sharing as a Link Sharing as a JSON file But there is a problem in above ways of sharing collection. If your postman collection is using Environment variable or Global variables , those variables are not imported and shared with collection automatically. You need […]

We have already learnt about sharing a Postman Collection as a link. In this post we will see sharing a Postman collection as a JSON file. A Postman Collection can be exported and imported as a JSON file. This JSON file contains all metadata of collection which helps you to import collection. This exported JSON […]

In last post, we have already seen Parsing of JSON Object in Postman. You can get API response in JSON Array as well. A JSON Array is an ordered list of values. If JSON response are enclosed within [ ], it is called a JSON Array. If JSON response is enclosed in { }, is […]

As we know well now that Postman helps you to create automated tests for API testing, we need to assert response with expected values. JSON and XML are widely used type for request and response to API. In this post, we will see parsing JSON response and extracting values. Mainly we will see parsing a […]

We have already seen Usage of Path variables in Postman. We may need to retrieve provided path variables for assertion in scripts in Postman. We have already seen about Retrieving query parameters in tests in Postman. In this post we will see retrieving Path variables in tests in Postman. We can retrive provided path variables […]

We have already seen usage of Query params in API. We may need to retrieve query parameters value in Tests and Pre-request Script for validation. So in this post, we will see how can we retrieve query parameters value. To get value of specific query parameter:- pm.request.url.query.get() To get all query parameter as a […]

BDD is an advanced and faster transformation of traditional SDLC model i.e. Waterfall model. Waterfall model is a linear sequential arrangement of different phases of software development activities. It is called as linear sequential phases as each phase is dependent on previous phase deliverables or output. We can not move to next phase until previous […]

End points or URI may not be constant always. For example:- If you want to retrieve a booking details, you need to pass booking id in URI as below:- https://restful-booker.herokuapp.com/booking/1 https://restful-booker.herokuapp.com/booking/2 In above URI, 1 and 2 are booking ids and those are not constant. This makes above URI dynamic. You should have a way […]