MobileWebObject¶
Web Mobile Object.
Behavior Pattern: MobileWebObjectGenericBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ChildAt | Child object at index. | GetChildAt | |
ChildCount | Number of child items. | GetChildCount | |
Class | Class name of the object. | GetClass | |
Height | Height of the object. | GetHeight | |
Name | Name of the object. | GetName | |
ObjectType | Type of the object. | GetObjectType | |
Property | Value of a named property of the object. | GetProperty | |
Text | Text of the object, 'false' if text can not be read. | GetText | |
Width | Width of the object. | GetWidth | |
X | X-coordinate of the top left corner of the object. | GetX | |
Y | Y-coordinate of the top left corner of the object. | GetY |
Action Summary¶
Action | Description |
---|---|
DoAction | Clicks in the middle of the control. |
DoClear | Clears the text of the object. |
DoClick | Clicks in the middle of the control. |
DoDoubleClick | Double clicks in the middle of the control. |
DoEnsureVisible | Ensure that a child item with the specified text is visible on screen. |
DoSendKeys | Send a text to the object in character-by-character mode. |
Property Detail¶
ChildAt¶
Child object at index.
Getter Parameters:
Name | Type | Description |
---|---|---|
index | number | Index of the object to get. |
Type: string
Accessors: GetChildAt
value = SeS('SomeMobileWebObject').GetChildAt(index)
ChildCount¶
Number of child items.
Type: number
Accessors: GetChildCount
value = SeS('SomeMobileWebObject').GetChildCount()
Class¶
Class name of the object.
Type: string
Accessors: GetClass
value = SeS('SomeMobileWebObject').GetClass()
Height¶
Height of the object.
Type: number
Accessors: GetHeight
value = SeS('SomeMobileWebObject').GetHeight()
Name¶
Name of the object.
Type: string
Accessors: GetName
value = SeS('SomeMobileWebObject').GetName()
ObjectType¶
Type of the object.
Type: string
Accessors: GetObjectType
value = SeS('SomeMobileWebObject').GetObjectType()
Property¶
Value of a named property of the object.
Getter Parameters:
Name | Type | Description |
---|---|---|
name | string | Property name. |
Type: string
Accessors: GetProperty
value = SeS('SomeMobileWebObject').GetProperty(name)
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText
value = SeS('SomeMobileWebObject').GetText()
Width¶
Width of the object.
Type: number
Accessors: GetWidth
value = SeS('SomeMobileWebObject').GetWidth()
X¶
X-coordinate of the top left corner of the object.
Type: number
Accessors: GetX
value = SeS('SomeMobileWebObject').GetX()
Y¶
Y-coordinate of the top left corner of the object.
Type: number
Accessors: GetY
value = SeS('SomeMobileWebObject').GetY()
Action Detail¶
DoAction¶
Clicks in the middle of the control.
SeS('SomeMobileWebObject').DoAction()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoClear¶
Clears the text of the object.
SeS('SomeMobileWebObject').DoClear()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoClick¶
Clicks in the middle of the control.
SeS('SomeMobileWebObject').DoClick()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoDoubleClick¶
Double clicks in the middle of the control.
SeS('SomeMobileWebObject').DoDoubleClick()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoEnsureVisible¶
Ensure that a child item with the specified text is visible on screen.
SeS('SomeMobileWebObject').DoEnsureVisible()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSendKeys¶
Send a text to the object in character-by-character mode.
SeS('SomeMobileWebObject').DoSendKeys(keys)
Parameters:
Name | Type | Description |
---|---|---|
keys | string | Text to type into the object. |
Returns:
boolean: 'true' if success, 'false' otherwise.