SlowLoadableComponent T  ClassWebDriver
A LoadableComponent T  which might not have finished loading when Load() returns. After a call to Load(), the IsLoaded property should continue to return false until the component has fully loaded. Use the HandleErrors() method to check for error conditions which caused the Load() to fail.

            new SlowHypotheticalComponent().Load();
            

Inheritance Hierarchy

OnlineSystem Object
  OpenQA.Selenium.Support.UI LoadableComponent T 
    OpenQA.Selenium.Support.UI SlowLoadableComponent T 

Namespace: OpenQA.Selenium.Support.UI
Assembly: WebDriver.Support (in WebDriver.Support.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public abstract class SlowLoadableComponent<T> : LoadableComponent<T>
where T : SlowLoadableComponent<T>
Type Parameters

T
The type to be returned (normally the subclass' type)
See Also