用户和电子邮件中的Jmeter变量随机变化

时间:2017-05-30 05:21:03

标签: performance testing jmeter automated-tests qa

我需要进行一些性能测试并模拟 100个不同的用户,但如何为用户和电子邮件创建随机变量?

enter image description here

1 个答案:

答案 0 :(得分:5)

您可以使用__RandomString() function生成随机电子邮件,例如:

${__RandomString(10,abcdefghijklmnopqrstuvwxyz,)}@hotmail.com

the above function will return a random alphabetic string 10 characters long

演示:

RandomStringDemo

您可以将__RandomString()函数直接放入HTTP Request参数中,例如:

Random String parameteres

每次调用函数时,__RandomString()函数调用将被运行时生成的随机值替换。

请参阅Apache JMeter Functions - An Introduction指南以开始使用JMeter测试中的函数