Skip to main content

Function: selectTableRow()

selectTableRow(page, tableId, rowIndex, options?): Promise<void>

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

Selects a table row by index.

Parameters​

page​

TablePage

Playwright Page (or compatible subset).

tableId​

string

The UI5 control ID.

rowIndex​

number

Zero-based row index.

options?​

TableOptions

Table options.

Returns​

Promise<void>

Example​

`await selectTableRow(page, 'myTable', 0);`