Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase Variable value based on the iteration being run in Postman

I have an API request that I need to run in Postman-Collection-Runner thru multiple iterations. The API request uses Variable.

How can I make this variable to automatically increase with each iteration (or maybe set the iteration value as another Variable)?

like image 533
KVN Avatar asked Jul 30 '19 21:07

KVN


People also ask

How do you set a variable based on a response in Postman?

All you have to do is call postman. setEnvironmentVariable(key, value) or postman. setGlobalVariable(key, value) to set a variable with values you have extracted from the response.

How do you give a Postman a dynamic value?

' In the request URL section, a dynamic variable should be written in {{__}} format. Let's say you have to pass an integer number from 1 to 1000, so for that, you need to add {{$randomInt}}. Like the above example of the number variable, Postman supports so many other dynamic variables as well.


2 Answers

1. Using Global pm.* functions and Variables in Pre-Request Scripts/Tests

Pre-Request script - runs before executing the request

Tests - runs after executing the request

a.

pm.variables.set("id", pm.info.iteration);

Ex: example.com/{{id}}/update gives

example.com/0/update

example.com/1/update etc...

Number of iterations is set in Collection Runner. pm.info.iteration key has the current iteration number, starting at 0.

b.

var id = +pm.globals.get("id");
pm.globals.set("id", ++id);

The variables can be in any scope - globals/collection/environment/local/data.

In Collection Runner, check the Keep Variable Values checkbox, to persist the final value of the variable in the session (here id).

Note: If the variable is accessed via individual scopes (via pm.globals.* or pm.environment.* or pm.collectionVariables.*), then the mentioned checkbox should be toggled as required. Else if accessed via local scope (pm.variables.*), the value will not be persisted irrespective of the checkbox.

Ex: Same as above

More on variables and scoping


2. Using Dynamic variables

These variables can be used in case random values are needed or no specific order is necessary.

a. $randomInt - gives a random Integer within 1 - 1000.

Ex: example.com/{{$randomInt}}/update gives

example.com/789/update,

example.com/265/update etc...

b. $timestamp - gives current UNIX timestamp in seconds.

Ex: example.com/{{$timestamp}}/update gives

example.com/1587489427/update

example.com/1587489434/update etc...

More on Dynamic variables


Using Postman 7.22.1, while answering this. New methods may come in future.

like image 69
Vignesh Raja Avatar answered Nov 08 '22 06:11

Vignesh Raja


If I understand your question correctly, you would like to assign different values to a variable in the request in different iterations which is achievable in 2 ways.

a) Using data files

https://learning.getpostman.com/docs/postman/collection_runs/working_with_data_files/

The data files could be in JSON or CSV format. Unfortunately, there is no way in Postman to tie the variable values to another variable unless you want to do it in a hacky way!

b) Pre-request & Tests scripts

1- Initialise the environment variable in the Pre-request Scripts like this:

var value = pm.environment.get("var");

if( !value) {
    pm.environment.set("var", 1);
}

2- Increment the variable value in Tests

var value = pm.environment.get("var");

pm.environment.set("var", value+1);

This creates an environment variable and increments it after each iteration. depending on how you structure your collection you might need to consider flushing/resetting the environment variable to be ready for the next run

It worth mentioning that Pre-request Scripts and Tests running before and after the requests respectively, so you can write any scripts that would like to run after the request in the Tests. It shouldn't be necessarily a test!

like image 45
Mehran Avatar answered Nov 08 '22 08:11

Mehran