Finds the first row index where all specified column values match.
Playwright Page (or compatible subset).
The UI5 control ID of the table.
A record mapping column names to expected cell values.
The zero-based index of the first matching row, or -1 if not found.
All column lookup and row matching logic runs inside the browser script. Returns -1 if no matching row is found.
ControlError if the table control is not found.
const rowIdx = await feFindRowByValues(page, 'myApp--productTable', { Product: 'Widget A', Status: 'Active' }); Copy
const rowIdx = await feFindRowByValues(page, 'myApp--productTable', { Product: 'Widget A', Status: 'Active' });
Finds the first row index where all specified column values match.