tags:

views:

206

answers:

1

I'm looking for a tool that I could potentially use in combination with WatiN that would allow me to more or less measure both the response time of an interaction and also the filesize of the same interaction in combination with WatiN. Let's say, I make a google request. That's great, we've all seen that example, but what if I want to see how long that request took and also what was downloaded and how long it took. Does anyone know any tools that can be used programmatically to do this? Sure, there are many tools such as Charles, Fiddler 2 and Firebug that allow you to do this via an interface, but I'd like to be able to automatically generate reports and the like based on this tool.

A: 

Check out HttpWatch:
"HttpWatch is an HTTP viewer and debugger that integrates with IE and Firefox to provide seamless HTTP and HTTPS monitoring without leaving the browser window."
There is an article on the website called Using HttpWatch with WatiN with sample code for using it with WatiN.

Sam Warwick