Skip to main content

Function: getTableCellValue()

getTableCellValue(page, tableId, rowIndex, colIndex, options?): Promise<string>

Defined in: src/modules/table.ts:262

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.

options?​

TableOptions

Table options.

Returns​

Promise<string>

Example​

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