DomDynamicsAXTextBox¶
This behavior pattern implements standard behavior for TextBox control.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: DomDynamicsAXTextBoxBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
Action Summary¶
Action | Description |
---|---|
DoSetText | Sets text value of this object. |
Property Detail¶
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeDomDynamicsAXTextBox').GetText()
SeS('SomeDomDynamicsAXTextBox').SetText(/**string*/ value, /**boolean*/ hitEnter)
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeDomDynamicsAXTextBox').DoSetText(value, hitEnter)
Parameters:
Name | Type | Description |
---|---|---|
value | string | Text value. |
hitEnter | boolean | Pass 'true' to additionally hit enter after entering the text. Optional, Default: "false". |
Returns:
boolean: 'true' if success, 'false' otherwise.