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

    Function setTableCellValue

    • Sets a table cell value via inner control interaction.

      Parameters

      • page: TableOperationsPage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • rowIndex: number

        Zero-based row index.

      • colIndex: number

        Zero-based column index.

      • value: string

        The value to set.

      Returns Promise<void>

      ui5.table.setTableCellValue

      Write a value to a specific editable table cell by row and column index.

      ControlError if the cell cannot be edited.

      await setTableCellValue(page, 'myTable', 0, 1, 'New Value');