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; |