在参数中动态添加开始时间和结束时间的时间戳
1.先在collection中添加参数,这里的作用域是collection,也可以是其他的任何scope
2.在Pre-request Script 中设定开始时间和结束时间参数,比如昨天和今天的时间戳,下面是js代码
const currentTimeStamp = new Date().getTime();
const oneDayMilliseconds = 24 * 60 * 60 * 1000;
const yesterdayTimeStamp = currentTimeStamp - oneDayMilliseconds;
pm.collectionVariables.set("start_time", yesterdayTimeStamp);
pm.collectionVariables.set("end_time", currentTimeStamp);
3.在请求参数中设定start_time和end_time