Clicks (presses) a row at the specified index in a UI5 table.
Playwright Page (or compatible subset).
The UI5 control ID of the table.
Zero-based index of the row to click.
For responsive tables, fires the press event on the item or triggers a tap. For grid tables, fires rowSelectionChange or triggers a DOM click on the row element.
press
tap
rowSelectionChange
ControlError with ERR_CONTROL_AGGREGATION if the row index is out of bounds.
ERR_CONTROL_AGGREGATION
await feClickRow(page, 'myApp--productTable', 0); Copy
await feClickRow(page, 'myApp--productTable', 0);
Clicks (presses) a row at the specified index in a UI5 table.