TableTO

SAPGUI. TableTO

TableTO

Constructor

new TableTO()

A Table object,

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 UFT Developer to search for the object in the AUT. UFT Developer interacts with the application only when a step runs that performs an operation on the AUT object.
Parameters:
NameTypeDescription
descriptionDescriptionThe 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:
NameTypeAttributesDefaultDescription
descriptionA 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.
dontFilterByTypeboolean <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.
Returns:
a promise that is fulfilled with the object's absolute coordinates.
Type
Promise.<Point>

activateCell(row, columnIndexOrName) → {Promise.<void>}

Double-clicks a cell by row index and column name.
Parameters:
NameTypeDescription
rownumberThe row index.
columnIndexOrNamenumber | stringThe name of the column or the column index.
Returns:
a promise that is fulfilled when the operation ends.
Type
Promise.<void>

cells(rowopt, columnopt) → {Promise.<(Array.<Array.<SAPGUI.TableCell>>|Array.<SAPGUI.TableCell>)>|SAPGUI.TableCell}

Returns either a specific cell or a promise of all cells in the table (when called without arguments), all the cells in a row (when called with row only).
Parameters:
NameTypeAttributesDescription
rownumber <optional>
The row index of the specific cell.
columnnumber <optional>
The column index in the row, specified by the row parameter.
Returns:
a promise that is fulfilled with a specific cell when row and col are provided;
a promise that is fulfilled with all the cells in a row when only a row is provided;
a promise that is fulfilled with all cells in the table when no row is provided.
Type
Promise.<(Array.<Array.<SAPGUI.TableCell>>|Array.<SAPGUI.TableCell>)> | SAPGUI.TableCell

columnSelectionMode() → {Promise.<SAPGUI.TableSelectionMode>}

Returns which selections can be made on the columns.
Returns:
a promise that is fulfilled with the selections that can be made on the columns.
Type
Promise.<SAPGUI.TableSelectionMode>

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
*

deselectColumn(…columns) → {Promise.<void>}

Unselects the specified columns by column names or indices.
Parameters:
NameTypeAttributesDescription
columnsnumber | string <repeatable>
You can pass as many items as you like, each item is the column number or column name.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

deselectRow(…rows) → {Promise.<void>}

Unselects the specified rows.
Parameters:
NameTypeAttributesDescription
rowsnumber <repeatable>
You can pass as many items as you like, each item is the row number.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

deselectRowRange(indexFrom, indexTo) → {Promise.<void>}

Unselects the specified rows.
Parameters:
NameTypeDescription
indexFromnumberThe index of the first row in the range.
indexTonumberThe index of the last row in the range.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

waitUntilExists(timeout[opt]) → {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:
NameTypeAttributesDescription
timeoutnumber <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>

exists(timeoutopt) → {Promise.<boolean>}

Checks whether this object exists in the AUT.
Parameters:
NameTypeAttributesDescription
timeoutnumber <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>

findAllRowsWithCellTextInColumn(text, column) → {Promise.<Array.<Array.<TableCell>>>}

Returns all rows with the specified text in the specified column, by column index.
Parameters:
NameTypeDescription
textstringThe The text to search for.
columnnumber | stringThe name or the index of the column to search for.
Returns:
a promise that is fulfilled with the array of array of Cells.
Type
Promise.<Array.<Array.<TableCell>>>

findRowWithCellTextInColumn(text, column, startFromRow) → {Promise.<Array.<TableCell>>}

Returns the first row in a column that contains the specified text, by column name.
Parameters:
NameTypeDescription
textstringThe The text to search for.
columnnumber | stringThe name or the index of the column to search for.
startFromRownumberThe index of the row from which to start the search.
Returns:
a promise that is fulfilled with the array of Cells or null if not found.
Type
Promise.<Array.<TableCell>>

getTextLocations(text, rectangleopt) → {Promise.<Object>}

Returns all rectangular areas containing the specified text within this object.
Parameters:
NameTypeAttributesDescription
textstringThe text to search for in the test object.
rectangleObject <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:
NameTypeAttributesDescription
rectangleObject <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.
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:
NameTypeAttributesDefaultDescription
descriptionA 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.
dontFilterByTypeboolean <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>

id() → {Promise.<string>}

The object's unique identifier in text format.
Returns:
a promise that is fulfilled with the object's unique identifier in text format.
Type
Promise.<string>

waitUntilEnabled(timeout[opt]) → {Promise.<boolean>}

Supported on UFT Developer versions 15.0.1 and later

Waits until this test object becomes enabled or until the specified timeout elapses. This method is useful for synchronizing your test with your application.

Parameters:
NameTypeAttributesDescription
timeoutnumber <optional>
The time (in milliseconds) to wait for the test object to become enabled.
Returns:

a promise fulfilled with true if test object becomes enabled before the timeout is reached; otherwise, false.

Type
Promise.<boolean>

isEnabled() → {Promise.<boolean>}

Indicates whether the object can accept user input.
Returns:
a promise that is fulfilled with the enabled status of the object.
Type
Promise.<boolean>

isValidRow(row) → {Promise.<boolean>}

Indicates whether or not the specified row is a valid row for the table.
Parameters:
NameTypeDescription
rownumber0-based row index
Returns:
a promise that is fulfilled with a boolean value indicating if the row exists.
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>

name() → {Promise.<string>}

The name of the object.
Returns:
a promise that is fulfilled with the name of the object.
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>

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
*

pressSettingsButton() → {Promise.<void>}

Presses the table settings button.
Returns:
a promise that is fulfilled when the operation ends.
Type
Promise.<void>

rowSelectionMode() → {Promise.<SAPGUI.TableSelectionMode>}

Returns which selections can be made on the rows.
Returns:
a promise that is fulfilled with the selections that can be made on the rows.
Type
Promise.<SAPGUI.TableSelectionMode>

selectAllColumns() → {Promise.<void>}

Selects all columns in the table.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

selectCell(row, columnIndexOrName) → {Promise.<void>}

Selects a cell by row index and column name.
Parameters:
NameTypeDescription
rownumberThe row index.
columnIndexOrNamenumber | stringThe name of the column or the column index.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

selectColumn(…columns) → {Promise.<void>}

Selects the specified columns by column names or indices.
Parameters:
NameTypeAttributesDescription
columnsnumber | string <repeatable>
You can pass as many items as you like, each item is the column number or column name.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

selectRow(…rows) → {Promise.<void>}

Selects the specified rows in the object.
Parameters:
NameTypeAttributesDescription
rowsnumber <repeatable>
You can pass as many items as you like, each item is the row number.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

selectRowRange(indexFrom, indexTo) → {Promise.<void>}

Selects the specified row range.
Parameters:
NameTypeDescription
indexFromnumberThe index of the first row in the range.
indexTonumberThe index of the last row in the range.
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:
NameTypeAttributesDescription
optionsObject <optional>
An options object that defines the image capture preferences.
Properties
NameTypeAttributesDefaultDescription
formatstring <optional>
"png" The format of the image. Possible values: png, bmp.
Returns:
a promise that is fulfilled with the Base64 string of the test object's image.
Type
Promise.<string>

title() → {Promise.<string>}

The title of the object.
Returns:
a promise that is fulfilled with the title of the object.
Type
Promise.<string>

type() → {Promise.<SAPGUI.ComponentType>}

The SAPGUI component type of this object.
Returns:
a promise that is fulfilled with the SAPGUI component type.
Type
Promise.<SAPGUI.ComponentType>

verifyImageExists(imageToFind, similarityopt) → {Promise.<Object>}

Checks whether a snapshot of this object contains the supplied image.
Parameters:
NameTypeAttributesDescription
imageToFindstringA Base64 string representation of the image to look for within the test object's snapshot.
similaritynumber <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:
NameTypeAttributesDescription
expectedImagestringA Base64 string representation of the image to compare to the test object snapshot.
pixelTolerancenumber <optional>
The percentage of pixels that can differ between the two images, and still be considered a match. Default = 0.
rgbTolerancenumber <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:
NameTypeAttributesDescription
expectedImagestringA Base64 string representation of the image to compare to the test object snapshot.
maskAreaImagestringA Base64 string representation of the image mask area to use in the image comparison.
pixelTolerancenumber <optional>
The percentage of pixels that can differ between the two images, and still be considered a match. Default = 0.
rgbTolerancenumber <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>