Ai
Returns row IDs from a UI5 table.
Playwright Page (or compatible subset).
The UI5 control ID.
Optional
Table options.
ui5.table.getRows
Retrieve the UI5 control IDs of all visible rows in a table.
Returns an array of UI5 control IDs for visible rows (empty array if no rows).
Returns DOM row IDs (not OData keys). Use for iterating rows or passing to other APIs.
sap.m.Table, sap.ui.table.Table — getItems() / getRows() aggregation
Read table row references for subsequent row-level operations.
`const rows = await getTableRows(page, 'myTable');` Copy
`const rows = await getTableRows(page, 'myTable');`
Returns row IDs from a UI5 table.