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

    Function getCellByColumnName

    • Returns the cell text at a given row and column name.

      Parameters

      • page: TableOperationsPage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • rowIndex: number

        Zero-based row index.

      • columnName: string

        Column header text.

      • Optionaloptions: TableOptions

        Table options.

      Returns Promise<string>

      Cell text value.

      ControlError if the column name is not found.

      const val = await getCellByColumnName(page, 'myTable', 0, 'Status');