Reputation: 10585
I am using Selenium for a unit test and once and a while during the unit test one of the requests goes COMPLETELY WILD and makes like 1000 requests to the server in under an hour.
This is just an unfortunate bug in my selenium script but it's hard to reproduce.
Is there some way I can log all the HTTP client requests being made from Selenium driver? I'm using the Chrome driver in my case.
Upvotes: 2
Views: 2236
Reputation: 4353
Try using BrowserMob proxy. You can integrate through your selenium and log all your requests as Har and analyse them.
Upvotes: 1
Reputation: 9019
I'd recommend installing Fiddler to log the HTTP requests.
http://www.telerik.com/fiddler
Upvotes: 0