0

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.

manoj batchu
  • 1
  • 2
  • 2

1 Answers1

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

    JMeter ThreadNum Demo

  • __randomString() - generates a string of pseudo-random characters of predefined length

    JMeter Random Demo

  • __time() - returns current time in different formats, by default in milliseconds since start of Unix epoch

    JMeter Generate Timestamp

and many others, see Apache JMeter Functions - An Introduction guide to learn more about the concept.

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