ProfileName (IHTTPAnalyzerFirefox)
Top  Previous  Next

Property type

A String value.Read-Only

Description

This is the name of the firefox profile which HttpAnalyzer attached or should be started. You can use an empty string ("") to indicate the use of the default profile.

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

}