一、根据当前日期随机生成一个历史日期(格式:yyyy-mm-dd)
var num = Math.round(Math.random()*100) //生成一个0-100的随机数
var date = new Date() //获取当前日期
var his_date = String(date.setDate(date.getDate()-num)) //设置当前日期为num前的日期
//console.log(his_date)
//console.log(typeof his_date)
//console.log(num)
var year = String(date.getFullYear()) //获取yyyy
var month = String(date.getMonth()) //获取mm
var day = String(date.getDate()) //获取dd
//console.log(year,month,day)
//console.log(typeof year)
var history_date = year+"-"+month+"-"+day //设置日期输出格式
//console.log(history_date)
pm.environment.set("history_date",history_date);