Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    Preparing search index...

    Function deselectAllTableRows

    • Ai

      Deselects all rows in a UI5 table.

      Parameters

      • page: TablePage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • Optionaloptions: TableOptions

        Table options.

      Returns Promise<void>

      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');`