C# Class Selenol.Elements.BaseTextInputElement

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

Public Methods

Method Description
Clear ( ) : void

Clears text in the text input.

SendEnter ( ) : void

Sends Enter key to the input.

TypeText ( string text ) : void

Simulates typing text into the text input.

Protected Methods

Method Description
BaseTextInputElement ( IWebElement webElement ) : System

Initializes a new instance of the BaseTextInputElement class.

Method Details

BaseTextInputElement() protected method

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

Clear() public method

Clears text in the text input.
public Clear ( ) : void
return void

SendEnter() public method

Sends Enter key to the input.
public SendEnter ( ) : void
return void

TypeText() public method

Simulates typing text into the text input.
public TypeText ( string text ) : void
text string The text.
return void