Function: selectAllTableRows()
selectAllTableRows(
page,tableId,options?):Promise<void>
Defined in: src/modules/table.ts:448
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>
Intent
Select all rows in the table (equivalent to "Select All" checkbox).
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');`