Skip to main content

Function: selectRowByValues()

selectRowByValues(page, tableId, columnValues, options?): Promise<void>

Defined in: src/modules/table-operations.ts:208

Finds a row by column values and selects it.

Parameters​

page​

TableOperationsPage

Playwright Page (or compatible subset).

tableId​

string

The UI5 control ID.

columnValues​

ColumnValueCriteria

Column name to expected value mapping.

options?​

TableOptions

Table options.

Returns​

Promise<void>

Throws​

ControlError if no matching row is found.

Example​

await selectRowByValues(page, 'myTable', { Name: 'Alice' });