Skip to main content

Function: navigateToItem()

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

Defined in: src/fe/list-report.ts:280

Navigates to a table item by row index. Fires press/tap on the row.

Parameters​

page​

ListReportPage

Playwright Page (or compatible subset).

tableId​

string

The UI5 control ID of the table.

rowIndex​

number

Zero-based row index to navigate to.

options?​

ListReportOptions

Optional timeout and stability settings.

Returns​

Promise<void>

Throws​

ControlError if the table is not found or the index is out of bounds.

Example​

await navigateToItem(page, 'app--table', 0);