2

I need to create unique user names in JMeter. Can I create an ever increasing counter that only increments once each time I run the test that is persistent across saves?

David Parks
  • 30,789
  • 47
  • 185
  • 328

1 Answers1

2

Ah, simple, just use the __time function to generate the current time in milliseconds and use that as the unique part of the username.

David Parks
  • 30,789
  • 47
  • 185
  • 328