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

    Function feGetTableRowCount

    • Gets the number of rows in a UI5 table control.

      Parameters

      • page: FETablePage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID of the table.

      Returns Promise<number>

      The number of rows in the table.

      Supports responsive tables (sap.m.Table) via getItems() and grid tables (sap.ui.table.Table and variants) via getBinding('rows').getLength().

      fe.table.getRowCount

      ControlError if the table control is not found.

      const count = await feGetTableRowCount(page, 'myApp--productTable');