I'm trying the locust.io
(written in Python).
I'm trying to test spikes. So I've tried setting min_wait
and max_wait
, so it would run only within that range (every 5 minutes):
min_wait = 300000
max_wait = 350000
The problem is that it runs only 1 request each time, although I set 80 Users.
Couldn't find a way to create more requests each time.