Constructor
new OKCodeTO()
An OKCodeTO object representing an SAP OK Code box in a SAP NWBC desktop application.
Members
displayName
Returns the object display name defined in the Application Model.
Methods
$(description) → {*}
Creates a child test object of this test object.
This operation does not cause a search for the object in the AUT. OpenText Functional Testing for Developers interacts with the application only when a step runs that performs an operation on the AUT object.
Parameters:
| Name | Type | Description |
|---|---|---|
description |
Description | The description of the test object. Can be a full test object description or a string. If a string is provided, it is interpreted as a CSS selector with a default test object type of WebElement. |
Returns:
the new child test object with the provided description.
- Type
- *
$$(description, dontFilterByTypeopt) → {Promise.<Array.<TestObject>>}
Returns all child objects of this object that match the supplied test object description.
Parameters:
| Name | Type | Attributes | Default | Description |
|---|---|---|---|---|
description |
A description object that defines the test object type and the set of properties and values that should be common to all objects that are returned. | |||
dontFilterByType |
boolean |
<optional> |
false | Set this parameter to true to avoid limiting the returned objects to a specific test object type. |
Returns:
a promise that is fulfilled with an array of test objects that match the supplied description.
- Type
- Promise.<Array.<TestObject>>
absoluteLocation() → {Promise.<Point>}
Returns the object's absolute coordinates relative to the screen (in pixels), format: {x,y}.
Remark: 0,0 is always the top-left corner of the (primary) monitor.
Remark: 0,0 is always the top-left corner of the (primary) monitor.
Returns:
a promise that is fulfilled with the object's absolute coordinates.
- Type
- Promise.<Point>
callFTMethod(methodName) → {Promise.<void>|Promise.<any>}
Calls a method or property of an OpenText Functional Testing test object.
Parameters:
| Name | Type | Description |
|---|---|---|
methodName |
string | The name of the method or property to call (additional arguments required by the method or property can be passed after this parameter). |
Returns:
-
If the called method or property has no return value
- Type
- Promise.<void>
-
Returns a promise that contains the return value of the called method of property
- Type
- Promise.<any>
click(argsopt) → {Promise.<void>}
Clicks on this object using the definitions from the supplied args object.
If you do not provide the args object, the click is performed in the center of the object using the left mouse button.
Parameters:
| Name | Type | Attributes | Description | |||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
args |
Object |
<optional> |
The arguments for the click operation.
Properties
|
Returns:
a promise that is fulfilled when the click operation ends.
- Type
- Promise.<void>
description() → {*}
Returns the description for this test object. The test object must be obtained using the $ method, otherwise, this method returns null.
Returns:
the description for this test object.
- Type
- *
doubleClick(argsopt) → {Promise.<void>}
Clicks on this object using the definitions from the supplied args object.
If you do not provide the args object, the double-click is performed in the center of the object using the left mouse button.
Parameters:
| Name | Type | Attributes | Description | |||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
args |
Object |
<optional> |
The arguments for the double-click operation.
Properties
|
- Overrides:
Returns:
a promise that is fulfilled when the double-click operation ends.
- Type
- Promise.<void>
dragAndDropOn(target, dragOptionsopt) → {Promise.<void>}
Drags and drops a test object onto the specified target object according to the specified DragOptions behavior.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
target |
TestObject | Object | The target object on which this object is dropped. | |||||||||||||||||||||
dragOptions |
Object |
<optional> |
The drag and drop behavior to apply.
Properties
|
Returns:
a promise that is fulfilled when the drop operation ends.
- Type
- Promise.<void>
exists(timeoutopt) → {Promise.<boolean>}
Checks whether this object exists in the AUT.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
timeout |
number |
<optional> |
The time (in seconds) to wait for this object before returning a result of true or false. By default, uses the object synchronization timeout defined in the runtime engine settings. |
Returns:
a promise that is fulfilled with a boolean indicating whether the object exists.
- Type
- Promise.<boolean>
fullNamePath() → {Promise.<string>}
The full hierarchy of the object's name with all parent objects.
Returns:
a promise that is fulfilled with the full hierarchy of the object's name.
- Type
- Promise.<string>
fullType() → {Promise.<string>}
The full type name of this object.
Returns:
a promise that is fulfilled with the full type name of this object.
- Type
- Promise.<string>
getTextLocations(text, rectangleopt) → {Promise.<Object>}
Returns all rectangular areas containing the specified text within this object.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
text |
string | The text to search for in the test object. | |
rectangle |
Object |
<optional> |
The rectangular area in the test object to search for the text. |
Returns:
a promise that is fulfilled with an array of rectangles containing all rectangular areas containing the specified text within this object.
- Type
- Promise.<Object>
getVisibleText(rectangleopt) → {Promise.<string>}
Returns all visible text from this object.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
rectangle |
Object |
<optional> |
The rectangular area in the test object to return the text from. |
Returns:
a promise that is fulfilled with all the visible text from this object.
- Type
- Promise.<string>
highlight() → {Promise.<void>}
Highlights this object in the AUT.
Remark: This may be useful when debugging a test.
Remark: This may be useful when debugging a test.
Returns:
a promise that is fulfilled when the highlighting operation ends.
- Type
- Promise.<void>
highlightMatches(description, dontFilterByTypeopt) → {Promise.<number>}
Highlights all children that match the supplied test object description.
Parameters:
| Name | Type | Attributes | Default | Description |
|---|---|---|---|---|
description |
A description object that defines the test object type and the set of properties and values that should be common to all objects that are highlighted. | |||
dontFilterByType |
boolean |
<optional> |
false | Set this parameter to true to avoid limiting the highlighted objects to a specific test object type. |
Returns:
a promise that is fulfilled with the number of matches that are found and highlighted.
- Type
- Promise.<number>
isReadOnly() → {Promise.<boolean>}
Indicates whether the text editing control is read-only to a user interacting with the control.
Returns:
a promise that is fulfilled with an indication of whether the control is read-only.
- Type
- Promise.<boolean>
location() → {Promise.<Point>}
Returns the object's coordinates relative to the parent window (in pixels), format: {x,y}.
Returns:
a promise that is fulfilled with the object's relative coordinates.
- Type
- Promise.<Point>
makeVisible() → {Promise.<void>}
Scrolls the object into view if it is not visible in the parent window.
Returns:
a promise that is fulfilled when the operation is performed.
- Type
- Promise.<void>
name() → {Promise.<string>}
The name of the control.
Returns:
a promise that is fulfilled with the name of the control.
- Type
- Promise.<string>
nativeObject() → {Promise.<Object>}
Returns the native application object that is represented by this test object instance,
enabling you to access the native properties and methods provided by that object.
Returns:
a promise that is fulfilled with the native application object that is represented by this test object instance.
- Type
- Promise.<Object>
objectName() → {Promise.<string>}
The object's name as set by the developer.
Returns:
a promise that is fulfilled with the object's name as set by the developer.
- Type
- Promise.<string>
parent() → {*}
Returns the parent test object of this test object. The child object must be obtained using the $ method, otherwise, this method returns null.
Returns:
the parent test object of this test object.
- Type
- *
sendKeys(inputopt, modifiersopt) → {Promise.<void>}
Sends keyboard keys to an object.
Parameters:
| Name | Type | Attributes | Default | Description |
|---|---|---|---|---|
input |
string |
<optional> |
The string to send to the object. Use FunctionKeys and Keys for special keys. | |
modifiers |
KeyModifier |
<optional> |
KeyModifier.none | The modifier keys. Use KeyModifier for this parameter. |
Returns:
a promise that is fulfilled when the sendKeys operation ends.
- Type
- Promise.<void>
setMultiLineSelection(lineFrom, columnFrom, lineTo, columnTo) → {Promise.<void>}
Selects the text in a multi-line edit box.
All positions are 0-based.
Parameters:
| Name | Type | Description |
|---|---|---|
lineFrom |
number | The line at which the selection starts. |
columnFrom |
number | The column at which the selection starts (in characters). |
lineTo |
number | The line at which the selection ends. |
columnTo |
number | The column at which the selection ends (in characters). |
Returns:
a promise that is fulfilled when the operation ends.
- Type
- Promise.<void>
setSingleLineSelection(columnFrom, columnTo) → {Promise.<void>}
Selects the text in a single-line edit box.
All positions are 0-based.
Parameters:
| Name | Type | Description |
|---|---|---|
columnFrom |
number | The column at which the selection starts (in characters). |
columnTo |
number | The column at which the selection ends (in characters). |
Returns:
a promise that is fulfilled when the operation ends.
- Type
- Promise.<void>
setText(text) → {Promise.<void>}
Sets the value of the edit box.
Parameters:
| Name | Type | Description |
|---|---|---|
text |
string | The text to be entered in the edit box. |
Returns:
a promise that is fulfilled when the operation ends.
- Type
- Promise.<void>
showContextMenu() → {Promise.<void>}
Displays the control's context menu.
Returns:
a promise that is fulfilled when the operation is performed.
- Type
- Promise.<void>
size() → {Promise.<Size>}
Returns the object's size (in pixels).
Returns:
a promise that is fulfilled with the object's size.
- Type
- Promise.<Size>
snapshot(optionsopt) → {Promise.<string>}
Captures and returns a Base64 representation of this test object.
Parameters:
| Name | Type | Attributes | Description | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
<optional> |
An options object that defines the image capture preferences.
Properties
|
Returns:
a promise that is fulfilled with the Base64 string of the test object's image.
- Type
- Promise.<string>
submit() → {Promise.<void>}
Submits the entered information.
Returns:
a promise that is fulfilled when the operation ends.
- Type
- Promise.<void>
supportedPatterns() → {Promise.<Array.<string>>}
Returns the list of UI Automation patterns supported by this object.
Returns:
a promise that is fulfilled with the list of supported patterns.
- Type
- Promise.<Array.<string>>
supportsTextSelection() → {Promise.<boolean>}
Indicates whether the edit box supports text selection.
Returns:
a promise that is fulfilled with an indication of whether the edit box supports text selection.
- Type
- Promise.<boolean>
type(text) → {Promise.<void>}
Types the specified string in the object.
Parameters:
| Name | Type | Description |
|---|---|---|
text |
string | The text string and/or constants representing non-alphanumeric keys. |
Returns:
a promise that is fulfilled when the operation is performed.
- Type
- Promise.<void>
verifyImageExists(imageToFind, similarityopt) → {Promise.<Object>}
Checks whether a snapshot of this object contains the supplied image.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
imageToFind |
string | A Base64 string representation of the image to look for within the test object's snapshot. | |
similarity |
number |
<optional> |
The minimum similarity between the two images (as a percentage), above which the find is considered a match. Default = 100. |
Returns:
a promise that is fulfilled with an object representing the point where the image was located, or null if it was not found.
- Type
- Promise.<Object>
verifyImageMatch(expectedImage, pixelToleranceopt, rgbToleranceopt) → {Promise.<boolean>}
Checks whether a snapshot of this object and the supplied image are a match.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
expectedImage |
string | A Base64 string representation of the image to compare to the test object snapshot. | |
pixelTolerance |
number |
<optional> |
The percentage of pixels that can differ between the two images, and still be considered a match. Default = 0. |
rgbTolerance |
number |
<optional> |
The percentage by which the RGB values of the pixels in the two images can differ, and still be considered a match. Default = 0. |
Returns:
a promise that is fulfilled with a boolean representing the comparison result.
- Type
- Promise.<boolean>
verifyImageMatchWithMask(expectedImage, maskAreaImage, pixelToleranceopt, rgbToleranceopt) → {Promise.<boolean>}
Checks whether a snapshot of this object and the supplied image are a match.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
expectedImage |
string | A Base64 string representation of the image to compare to the test object snapshot. | |
maskAreaImage |
string | A Base64 string representation of the image mask area to use in the image comparison. | |
pixelTolerance |
number |
<optional> |
The percentage of pixels that can differ between the two images, and still be considered a match. Default = 0. |
rgbTolerance |
number |
<optional> |
The percentage by which the RGB values of the pixels in the two images can differ, and still be considered a match. Default = 0. |
Returns:
a promise that is fulfilled with a boolean representing the comparison result.
- Type
- Promise.<boolean>
waitUntilExists(timeoutopt) → {Promise.<boolean>}
Waits until this test object exists or until the specified timeout elapses.
This method is useful for synchronizing your test with your application.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
timeout |
number |
<optional> |
The time (in seconds) to wait for this object to exist. By default, uses the object synchronization timeout defined in the runtime engine settings. |
Returns:
a promise that is fulfilled with a boolean indicating whether the object exists.
- Type
- Promise.<boolean>