谁能在 RandomString 之后向我解释
Can anyone explain me following RandomString
任何人都可以向我解释以下用于创建随机字符串的语法
${__time(ddHHMMmmss)}${__javaScript(Math.floor((Math.random() * 10) + 1))}
Math.floor:
The Math.floor() function returns the largest integer less than or equal to a given number.
根据:
所以 __javaScript 是一个 JMeter 函数,它将 运行 :
Math.floor((Math.random() * 10) + 1)
它会给你一个 1 到 10 之间的数字。
终于__time is a JMeter function that will give the current date using Java format:
ddHHMMmmss
今天的结果可能是:
- 12220600539
- 12220600531
- 12220600539
- 12220600537
- 122206005310
...
任何人都可以向我解释以下用于创建随机字符串的语法
${__time(ddHHMMmmss)}${__javaScript(Math.floor((Math.random() * 10) + 1))}
Math.floor:
The Math.floor() function returns the largest integer less than or equal to a given number.
根据:
所以 __javaScript 是一个 JMeter 函数,它将 运行 :
Math.floor((Math.random() * 10) + 1)
它会给你一个 1 到 10 之间的数字。
终于__time is a JMeter function that will give the current date using Java format:
ddHHMMmmss
今天的结果可能是:
- 12220600539
- 12220600531
- 12220600539
- 12220600537
- 122206005310 ...