Finds the first row whose cells match all specified column-value criteria.
Playwright Page (or compatible subset).
The UI5 control ID.
Column name to expected value mapping.
Zero-based row index, or -1 if not found.
const idx = await findRowByValues(page, 'myTable', { Name: 'Alice' }); Copy
const idx = await findRowByValues(page, 'myTable', { Name: 'Alice' });
Finds the first row whose cells match all specified column-value criteria.