C# Класс Selenol.Elements.BaseTextInputElement

The base text input element.
Наследование: BaseHtmlElement
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
BaseTextInputElement ( IWebElement webElement ) : System

Initializes a new instance of the BaseTextInputElement class.

Описание методов

BaseTextInputElement() защищенный Метод

Initializes a new instance of the BaseTextInputElement class.
protected BaseTextInputElement ( IWebElement webElement ) : System
webElement IWebElement The web element.
Результат System

Clear() публичный Метод

Clears text in the text input.
public Clear ( ) : void
Результат void

SendEnter() публичный Метод

Sends Enter key to the input.
public SendEnter ( ) : void
Результат void

TypeText() публичный Метод

Simulates typing text into the text input.
public TypeText ( string text ) : void
text string The text.
Результат void