C# Class Selenol.Elements.BaseSelectElement

The base select element.
Inheritance: BaseHtmlElement
Mostrar archivo Open project: pbakshy/Selenol

Public Methods

Method Description
SelectOptionByText ( string text ) : void

Select option by text.

SelectOptionByValue ( string value ) : void

Select option by value.

Protected Methods

Method Description
BaseSelectElement ( IWebElement webElement ) : System

Initializes a new instance of the BaseSelectElement class. Initializes a new instance of the SelectElement class.

Private Methods

Method Description
SelectBy ( bool>.Func predicate, string description ) : void

Method Details

BaseSelectElement() protected method

Initializes a new instance of the BaseSelectElement class. Initializes a new instance of the SelectElement class.
protected BaseSelectElement ( IWebElement webElement ) : System
webElement IWebElement The web element.
return System

SelectOptionByText() public method

Select option by text.
public SelectOptionByText ( string text ) : void
text string The text.
return void

SelectOptionByValue() public method

Select option by value.
public SelectOptionByValue ( string value ) : void
value string The value.
return void