I want to send out page requests from a browser window as fast as possible to test website responsiveness but don't have any idea how to do it.
On the receiving end is a server that will be getting multiple packets but in order to insure that they are being processed in an FIFO manner I want to send them as close to one another as possible.
The input needs to come from a web browser (doesn't matter which type or if its emulated some how) and cannot be done from the command line. My idea is to somehow freeze the network stack and then unfreezing it to release the packets all at once, but in correct order. Is there any way to do this or is there a better way to do this?