Reputation: 9076
I'm writing some tests using Selenium in C#.
I'd like to check if some action on page sends request to specific host. I can check it manually using f.e. Fiddler, but I have no idea how to test it automatically.
Is there any way to connect Fiddler with Selenium and C#? Or maybe there's smarter solution?
Upvotes: 0
Views: 1570
Reputation: 256
You can use FiddlerCore, a library you can plug into your app with most of Fiddler's functionality
Upvotes: 0
Reputation: 56
Jim Evans posted a three part blog on getting http status codes via intergrating with fiddler, this may be of help.
http://jimevansmusic.blogspot.co.uk/2013/08/implementing-webdriver-http-status.html
Upvotes: 1