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​
Column name to expected value mapping.
options?​
Table options.
Returns​
Promise<void>
Throws​
ControlError if no matching row is found.
Example​
await selectRowByValues(page, 'myTable', { Name: 'Alice' });