NavigateAndWait (IHTTPAnalyzerFirefox)
Top  Previous  Next

Syntax
blSuccess=object .NavigateAndWait (URL as string ; TimeOutSecs: as Long )

Arguments
URL A String value which contains the URL.
TimeOutSecs A Long value which contains the timeout seconds. Use -1 to specify an infinite timeout.

Return Type
A Boolean value which indicates whether the time specified by the Timeout Secs parameter elapsed without the the page finished loading.

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.start();
addon.
NavigateAndWait("http://www.ieinspector.com", -1);
.........

addon.Stop();