Reputation: 81
I am trying to apply load sample request is like
I have single request, what I want is that same request should have unique di
(last key in query param). Nothing else I want to change.
My test is based on unique di
in request keeping other parameters constant.
Upvotes: 0
Views: 732
Reputation: 168072
I would suggest using __UUID() function which will generate a GUID structure which is unique according to the underlying algorithm each time being called.
If you don't like dashes you can remove them via __groovy() function like
${__groovy("${__UUID}".replaceAll("-"\, ""),)}
Demo:
See Apache JMeter Functions - An Introduction to get started with JMeter Functions.
Upvotes: 1