Interface IEditField
An Oracle text field.
public interface IEditField : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
Caption
The caption of the object.
string Caption { get; }
Property Value
ClassPath
The Oracle class hierarchy of the object's Oracle class.
string ClassPath { get; }
Property Value
IsEditable
Indicates whether the text field is editable.
bool IsEditable { get; }
Property Value
ObjectDescription
The accessibility description of the object, as specified by the server.
string ObjectDescription { get; }
Property Value
ObjectName
The internal name of the object, as supplied by the application server.
string ObjectName { get; }
Property Value
Text
The value of the object.
string Text { get; }
Property Value
TooltipText
The text displayed in the object's tooltip.
string TooltipText { get; }
Property Value
Methods
OpenDialog()
Opens the field's associated dialog box.
void OpenDialog()
SetFocus()
Transfers the focus to the field.
void SetFocus()
SetText(string)
Enters the specified text into the field.
void SetText(string text)
Parameters
textstringThe text to enter in the text field.
SetTextAndValidate(string)
Enters the specified text into the field with validation.
void SetTextAndValidate(string text)
Parameters
textstringThe text to enter in the text field.
Validate()
Transfers the focus out of the field.
void Validate()