I've been assigned the task of load-testing a web server that's hosting a new web app. I've pointed my browser to the application and ran Charles (or Fiddler - depending on OS) and watched to see what requests were being made and how often. What I'd like to do is now simulate several browsers pointing to the same application and, after logging in, idling for up to, say, an hour. I've read both of these posts:
Performing a Stress Test on Web Application?
https://stackoverflow.com/questions/9703800/web-application-testing-simulating-idle-browser-time
but I'm afraid I'm still too new to performance/load/soak testing to know if any of these tools can be used for this. It seems like they're all good for making requests to the server, but I'd like to simulate an idle browser where the user doesn't make any requests explicitly. The requests are made implicitly without the user's knowledge.
I hope that makes sense.
Any help appreciated.