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

    Function selectAllTableRows

    • Ai

      Selects 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.selectAll

      Select all rows in the table (equivalent to "Select All" checkbox).

      On success, all rows in the table are selected.

      Uses selectAll() on both grid and responsive table variants.

      sap.m.Table, sap.ui.table.Table — selectAll() API

      Mass selection for bulk operations like delete or export.

      `await selectAllTableRows(page, 'myTable');`