IHTTPAnalyzerFirefox (Firefox Addon)
Top  Previous  Next

The IHTTPAnalyzerFirefox object is used to control the HTTPAnalyzer Firefox Add-on.

General methods and properties.

IHTTPAnalyzerFirefox is inherited from IHTTPAnalyzer.

method
AttachIE
method
NavigateAndWait
method
DeleteAllCache
method
DeleteAllCookies
method
DeleteCacheForRecordedURLs
method
DeleteCookiesForRecordedURLs
prop get set
IE
prop get set
Visible


Examples
JavaScript example:
var addon=new ActiveXObject("HTTPAnalyzerFF.HttpAnalyzerFirefox");
//addon.ProfileName='dev'
//set a firefox profile name
addon.start();
addon.NavigateAndWait("http://www.ieinspector.com"
, -1);
.........

addon.Stop();

for (var index = 0
; index < addon.Log.Count; ++index )
{
   var entry = addon.Log.Item(index);
   //do something

}



See Also
IHTTPAnalyzer
IHTTPAnalyzerStandalone