I have to test a web application and I've been asked to test it with concurrent users over 10 minutes. I don't really know how to do it and if I can do it using Forever
, Pace
or something like this.
Asked
Active
Viewed 5,336 times
4

Miguel
- 956
- 6
- 20
1 Answers
4
You could do something like this:
setUp(<YOUR SCENARIO>.inject(atOnceUsers(Configuration.NO_OF_USERS))).maxDuration(Configuration.MAX_DURATION minutes);
where atOnceUsers
indicates the number of parallel requests.
Refer to simulation setup for further documentation.