I have 400 users that need to run through a script one time only. I want to do this two different ways: 1) one user at a time where each user logs in, does the action once and then logs out never to log back in during that run; 2) blocks of 10 log in, runs the script one time only and then logs out never to log back in during that run.
How do I do this?
I'm not sure to understand your goal. Please correct me if i'm wrong but in your first case, you would like one user at a time so does it mean that the load will only be 1 virtual user and you will do that 400 times but each time a new user login?
The second case is more or less the same behavior but with 10 concurrent users, right?
Let me know if i misunderstood your question as the solution may be quite different depending on your goal.