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

    Function getTableRows

    • Ai

      Returns row IDs from a UI5 table.

      Parameters

      • page: TablePage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • Optionaloptions: TableOptions

        Table options.

      Returns Promise<readonly string[]>

      ui5.table.getRows

      Retrieve the UI5 control IDs of all visible rows in a table.

      Returns an array of UI5 control IDs for visible rows (empty array if no rows).

      Returns DOM row IDs (not OData keys). Use for iterating rows or passing to other APIs.

      sap.m.Table, sap.ui.table.Table — getItems() / getRows() aggregation

      Read table row references for subsequent row-level operations.

      `const rows = await getTableRows(page, 'myTable');`