Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    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().

      ControlError if the table control is not found.

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