Function: getTableRowCount()
getTableRowCount(
page,tableId,options?):Promise<number>
Defined in: src/modules/table.ts:231
Returns the total row count from a UI5 table's binding.
Parameters​
page​
TablePage
Playwright Page (or compatible subset).
tableId​
string
The UI5 control ID.
options?​
Table options.
Returns​
Promise<number>
Example​
`const count = await getTableRowCount(page, 'myTable');`