Ai
Selects a table row by index.
Playwright Page (or compatible subset).
The UI5 control ID.
Zero-based row index.
Optional
Table options.
ui5.table.selectRow
Select (highlight) a table row by its zero-based index.
On success, the row is selected in the table's selection model.
Uses SelectionPlugin for grid tables, setSelectedItem for responsive tables.
sap.m.Table, sap.ui.table.Table — row selection API
Select a specific row for subsequent actions (delete, edit, navigate).
`await selectTableRow(page, 'myTable', 0);` Copy
`await selectTableRow(page, 'myTable', 0);`
Selects a table row by index.