Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Function findRowByValues

    • Finds the first row whose cells match all specified column-value criteria.

      Parameters

      • page: TableOperationsPage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • columnValues: ColumnValueCriteria

        Column name to expected value mapping.

      Returns Promise<number>

      Zero-based row index, or -1 if not found.

      const idx = await findRowByValues(page, 'myTable', { Name: 'Alice' });