Postman内建变量常用方法实例解析

时间:2021-05-26

一、Postman有以下内建变量,适合一次性使用:

{{$guid}}//生成GUID
{{$timestamp}}//当前时间戳
{{$randomInt}}//0-1000的随机整数

二、内建变量的应用举例,获取当前时间戳

// 随机整数const randomInt = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min; pm.globals.set("random_number", randomInt(300,1000)); //从多个选项中选择实现:const randomInt = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min; const getRandomValue = list => list[randomInt(0, list.length - 1)];const charsInName = ['王','李','张'];pm.globals.set("people_name", getRandomValue(charsInName));//随机生成手机号const randomInt = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min; var mobile_num= `18${randomInt(100000000, 999999999)}`;pm.globals.set("mobile_num", mobile_num);//等待const sleep = (milliseconds) => {const start = Date.now();while (Date.now() <= start + milliseconds) {}};sleep(5000) //5秒

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章