AttachByProfile (IHTTPAnalyzerFirefox)
Top  Previous  Next

Syntax
blSuccess=object .AttachByProfile (ProfileName as string )

Arguments
ProfileName A String value which is the name of the profile under which an existing instance of Firefox is running and to which HttpAnalyzer should attempt to attach. You can use an empty string ("") to indicate the use of the default profile.


Return Type
A Boolean value. If the operation succeeds, returns will be true. If the operation fails, returns will be false.

Description
The NavigateAndWait method is used to navigate a specific URL and wait for the webpage loading to be completed.

Examples
JavaScript example:
var addon=new ActiveXObject("HTTPAnalyzerFF.HttpAnalyzerFirefox");

addon.
AttachByProfile("dev");
addon.start();
addon.
NavigateAndWait("http://www.ieinspector.com", -1);
.........

addon.Stop();