LoadableComponent T  ClassWebDriver
Represents any abstraction of something that can be loaded. This may be an entire web page, or simply a component within that page (such as a login box or menu) or even a service.
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 LoadableComponent<T> : ILoadableComponent 
where T : LoadableComponent<T>
Type Parameters

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

After the Load  method is called, the component will be loaded and ready for use. Overload the protected Load and IsLoaded members to both load a component and determine if the component is already loaded.
Examples

The expected usage is:

new HypotheticalComponent().Load();

See Also