My thread group is having 5 http samples requests which are running single times each. After that I want to send a single http sample request after every 5 seconds which is running after the above 4 samples.
Please suggest
My thread group is having 5 http samples requests which are running single times each. After that I want to send a single http sample request after every 5 seconds which is running after the above 4 samples.
Please suggest
After your first 4 samples, add a
Loop Controllerand set it its loop count toForever(or however many you need). Add your 5th Sample to thisLoop Controller. Then add aConstant Timerto that Sample with aThread Delayof 5000 (it's measured in milliseconds).If you checked
Foreverabove, under yourThread Groupyou'll want to check theSchedulerand add adurationotherwise it will run, well, forever.