I need to preform stress testing on Sign Up functionality, where 1000 user should login into the application at same time. It's very difficult to create 1000 test data every time manually in excel sheet and parse to jmeter. Can any one help me out where and how to create script for generating unique test data dynamically using jmeter.
Asked
Active
Viewed 2,781 times
1 Answers
2
There are JMeter Functions which can help you in generating either random or unique data, for example:
__threadNum() - returns current thread (virtual user) number
__randomString() - generates a string of pseudo-random characters of predefined length
__time() - returns current time in different formats, by default in milliseconds since start of Unix epoch
and many others, see Apache JMeter Functions - An Introduction guide to learn more about the concept.

Dmitri T
- 159,985
- 5
- 83
- 133