Postman Tutorial Part 41 – Dynamic Variables in Postman
We have seen three types of variables in Postman :-
- Global Variable
- Environment Variable
- Collection Variable
In this post, we will see Dynamic Variables in Postman. As the name says, it generates random data for your API. It is more like Random library in programming language to generate random number , timestamp or alphanumeric or alphabets. It helps a lot to hit an API with different data randomly every time.
Suppose you need to pass an integer number ranging between 1 to 1000, to a field in JSON request. You just need to pass “{{$randomInt}}“. See example below:-
For every run, a new value will be generated and pass in response.
Note:- Dynamic variables can not be used in Pre-request and Tests scripts. A dynamic variable starts from ‘$’. You can only use them in the
{{..}}
format in the request URL , headers and body.
Like this Postman provides so many dynamic variables. I will list some important dynamic variables here:-
[table id=11 /]
All dynamic variables with examples can be found here.
#ThanksForReading
Learn Selenium with Quiz
Be master in Selenium-WebDriver
API Testing – Basics
API Testing – Postman
API Testing – Rest Assured
Learn Protractor Step by Step
Frequently Asked Java Programs in Interview