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

    Function getTableCellValue

    • Ai

      Returns the text value of a specific table cell.

      Parameters

      • page: TablePage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • rowIndex: number

        Zero-based row index.

      • colIndex: number

        Zero-based column index.

      • Optionaloptions: TableOptions

        Table options.

      Returns Promise<string>

      ui5.table.getCellValue

      Read the display text of a cell at a specific row and column position.

      On success, returns the text or value of the cell control at the given position.

      Uses getText() or getValue() on the inner cell control. Returns text representation.

      sap.m.Table, sap.ui.table.Table — cell control text/value access

      Extract specific cell values for assertion or data extraction in E2E tests.

      `const val = await getTableCellValue(page, 'myTable', 0, 1);`