Ai
Returns the text value of a specific table cell.
Playwright Page (or compatible subset).
The UI5 control ID.
Zero-based row index.
Zero-based column index.
Optional
Table options.
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);` Copy
`const val = await getTableCellValue(page, 'myTable', 0, 1);`
Returns the text value of a specific table cell.