vote up 1 vote down star

I'm using browser automation for testing web sites but I need to verify HTTP requests from the browser (i.e., images, external scripts, XmlHttpRequest objects). Is there a way to programmatically instantiate a proxy or packet sniffer for the browser to use in order to see what its sending?

I'm already using Fiddler to watch the traffic but I want something that's UI-less that I can use in continuous build integration.

Can I easily get the HTTP-specific information from WinpCap?

flag

4 Answers

vote up 0 vote down check

Try winpcap . It's a driver/library combination which can be used to monitor packets. Based on what you are trying to do (watch traffic w/o a UI), this is probably a simpler solution than writing your own proxy.

link|flag
vote up 1 vote down

You probably don't want to proxy, that will introduce a lot of unnecessary complexity.

Consider packet sniffing instead, which is pretty much a solved problem. Wireshark is handy as a stand alone utility you can use manually, but it's also possible to do packet sniffing programmatically, using WinPcap, the library on which Wireshark is based. Here's a couple of examples of WinPcap in .Net, .NetNomad's example with sample project, and a CodeProject tutorial, also with source.

link|flag
vote up 1 vote down

There are numerous apps for this. My recommendation is Wireshark

link|flag
vote up 0 vote down

Have you looked at implementing an Http Module or an Http Handler (.ashx)? They will allow you to intercept each and every web request and process them as you need before getting to your page.

link|flag
These are requests for 3rd party sites – Mark Cidade Sep 26 '08 at 4:52
So your automated tests are going to depend on live third-party sites then? – Chris Sep 26 '08 at 4:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.