I am trying to configure a test for signup-login with invalid credentials imitating bruttforce attack. However, I want to make requests as a single user. So the scenario is the next:
- Request to sign up with valid params;
- Attempt to log in with invalid params in a loop.
I am adding throughput timer but then I need to set up a high number of threads to generate for example 1 request per second.
How can I set exactly one user and run only one request per second in a loop?
UPDATE - SOLUTION
Everything was rather simple but still strange for me. Maybe someone will face the same problem. To get a number of requests per one user throughput timer should be placed not inside the controller but inside the thread itself.