I'm currently developing a web-site and ran into some bugs. In order to fix some bugs I need to reproduce them so I can debug and so forth.. Some bugs require me to do a repetitive specific combination of buttonclicks/checkbox markings within a limited timeframe. I.e. I need to be able to send multiple identical requests to the backend such that when a request is sent the previous request must not be done processing. This is the only way the bug can be reproduced.
Now, my problem is that my pc is too fast so I cant do the necessary steps quickly enough to reproduce the bug.. so my backend finishes processing each request before I can send a new request.
How do I go about solving reproducing issues like this? - I'm thinking about lowering the clockfrequence of the CPU, but that seems like going very far just to be able to recreate a bug. Is there some sort of test-framework which can be used to help this issue? - there is some sort of way to quickly resend requests via some browser-plugin.. I dont know.. and google hasnt found anything useful for me yet.. so I was hoping other developers here have had a similar issue and have some pointers for me :)