4

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.

Miguel
  • 956
  • 6
  • 20

1 Answers1

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.

Teun M.
  • 133
  • 9
user666
  • 1,104
  • 12
  • 20