Created
August 13, 2020 20:00
-
-
Save ernestoguimaraes/71019fe05a9726d2f81017e863f8326e to your computer and use it in GitHub Desktop.
Tips to have Random Variables on JMeter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Random Numbers | |
use ${__Random(100,300)} on your request body to generate a random number betweeb 100 and 300. | |
## Random Letters | |
use ${__RandomString(1,CD)} on your request body to generate a random letter in C or D. | |
## UUID to identification | |
use ${__UUID} and you will have a GUID in your request body. | |
More on: https://jmeter.apache.org/usermanual/functions.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment