Ai
Deselects all rows in a UI5 table.
Playwright Page (or compatible subset).
The UI5 control ID.
Optional
Table options.
ui5.table.deselectAll
Clear all row selections in the table.
On success, all row selections are cleared (no rows selected).
Uses clearSelection() for grid tables, removeSelections(true) for responsive tables.
sap.m.Table, sap.ui.table.Table — clearSelection() / removeSelections()
Reset table selection state before a new selection operation.
`await deselectAllTableRows(page, 'myTable');` Copy
`await deselectAllTableRows(page, 'myTable');`
Deselects all rows in a UI5 table.