Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    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.

      ui5.table.getCellByColumnName

      Read a table cell value using a column header name instead of a numeric index.

      ControlError if the column name is not found.

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