Month: August 2019

Agile Software Development – Let’s Understand It

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 […]

Postman Tutorial Part 37 – Export & Import Global & Environment Variables in Postman As a JSON

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 […]

Postman Tutorial Part 36 – Export & Import Postman Collection As a JSON – Sharing Postman Collection

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 […]

Postman Tutorial Part 35 – Extracting Value From JSON Array Response in Postman – JSON Array Parsing in Postman

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 […]

Postman Tutorial Part 34 – Extracting Value From JSON Object Response in Postman – JSON Object Parsing in Postman

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 […]

Postman Tutorial Part 33 – Retrieve Path Variables Value in Tests Script in Postman

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 […]

Postman Tutorial Part 32 – Retrieve Query Parameter Value in Tests Script in Postman

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(<Parameter name>) To get all query parameter as a […]

Behavior Driven Development (BDD) – Understand in Easy Words

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 […]

Postman Tutorial Part 31 – URI Path Variables in Postman

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 […]

Please wait...

Subscribe to new posts to become automation expert

Want to be notified when my new post is published? Get my posts in your inbox.