Skip to main content

Function: getTableRows()

getTableRows(page, tableId, options?): Promise<readonly string[]>

Defined in: src/modules/table.ts:206

Returns row IDs from a UI5 table.

Parameters​

page​

TablePage

Playwright Page (or compatible subset).

tableId​

string

The UI5 control ID.

options?​

TableOptions

Table options.

Returns​

Promise<readonly string[]>

Example​

`const rows = await getTableRows(page, 'myTable');`