Reuse {{$randomInt}} in Postman

☆樱花仙子☆ 提交于 2019-12-11 01:15:24

问题


My 1st request is: GET http://example.com?int={{$randomInt}}. I need to run 2nd request (with other tests in it) to the same address, so I need to save generated variable. How can I do it?

I was trying pm.variables.get("int") in the "Tests" sandbox after 1st request, but this code cannot see int var.

Creating random number in Pre-req. sandbox to 1st request: postman.setGlobalVariable('int', Math.floor(Math.random() * 1000)); doesn't help either, because I need to use this param in the URL, while "Pre-req." block is run after request but before tests.

So how can I generate random var before 1st request and store it to use in 2nd request?


回答1:


If you set this in the Pre-Request Script of the first request:

pm.globals.set('int', Math.floor(Math.random() * 1000))

Or

// Using the built-in Lodash module
pm.globals.set("int", _.random(0, 1000))

You will be able to reference it and use the {{int}} syntax in any request. If you add this in the first request and then use it in the URL http://first-example.com?int={{int}} this value will then persist and you can use it again in a second request http://second-example.com?int={{int}}

Each time that {{$randomInt}} is used, it will generate a new value at run time.



来源:https://stackoverflow.com/questions/48184482/reuse-randomint-in-postman

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!