views:

472

answers:

1

I'm looking for something similar to Hammerhead. Currently, I write javascript code to test, and I'd rather just use a tool that I can easily share and has a GUI.

Edit: I'm hoping for something that tracks load events if possible and can easily do repeat tests.

A: 

Fiddler2 will provide load time information for your pages and all their content. In addition IE8's developer tools will indicate the load time for you of functions within the page. Just press F12.

For Fiddler, simply load the page and watch the headers/time results in the right hand frame.

For the IE8 Developer Tools:

  1. In the Profiler Tab, click Start Profiling
  2. Reload the page F5 then press Stop Profiling once loaded and you can see the time to call each function or the entire call tree.

You can also use Firebug Lite to give IE some Firebug love... just get and log the date at the beginning of the page load... and at the end of the page load... and log the delta.

scunliffe
But he is asking for IE6 solution.
rahul
True, Keith is looking for an IE6 solution... and Fiddler will provide that (even works for other non-IE browsers) and Firebug Lite will work in IE6 too. I mentioned the IE8 dev toolbar just as another option if/when IE8 is available. ;-)
scunliffe
Fiddler's great, and I use it often.
Keith Bentrup