Function: selectAllTableRows()
selectAllTableRows(
page,tableId,options?):Promise<void>
Ai
Selects all rows in a UI5 table.
Parameters
page
TablePage
Playwright Page (or compatible subset).
tableId
string
The UI5 control ID.
options?
Table options.
Returns
Promise<void>
Capability
ui5.table.selectAll
Intent
Select all rows in the table (equivalent to "Select All" checkbox).
Guarantee
On success, all rows in the table are selected.
Ai Context
Uses selectAll() on both grid and responsive table variants.
Sap Module
sap.m.Table, sap.ui.table.Table — selectAll() API
Business Context
Mass selection for bulk operations like delete or export.
Example
`await selectAllTableRows(page, 'myTable');`