JMETER a $ {__ RandomString function which is used to generate email addresses
2 answers
According to the JMeter Functions Guide , the __RandomString () function takes 3 parameters:
- Length of the desired random string
- Original characters
- If you need to store the generated string into a JMeter variable, you can supply the variable name as the third argument.
Thus, to get a string of 10 letters of the alphabet, you can use the __RandomString function like this:
${__RandomString(10,abcdefghijklmnopqrstuvwxyz,)}
+23
source to share