HttpWatch Automation Reference - Version 15.x
HttpWatch Namespace / Plugin Class / IsLoadingPage Property

IsLoadingPage Property
Returns a boolean value indicating whether the browser is still loading the current page.
Syntax
'Declaration
 
Public ReadOnly Property IsLoadingPage As Boolean
 
Remarks

You would normally use the Controller object's Wait or WaitEx methods to wait for a page to be loading. This property may be useful if you wanted to implement your own waiting function.

The IsLoadingPage property is the equivalent of calling the IsloadingPageEx method with the following parameters:

 

IsLoadingPage/IsLoadingPageEx
Copy Code
// Calling IsLoadingPageEx with waitForPageLoadEvent set to true
// and a 5 second value for httpIdleSecs
isLoading = controller.IsLoadingPageEx( true, false, 5);

// Is the equivalent to using IsLoadingPage
isLoading = controller.IsLoadingPage;
IsLoadingPage can only be used if Record has been called on the Plugin object.
Requirements
 
See Also