Applies a filter to a table column.
Playwright Page (or compatible subset).
The UI5 control ID.
Zero-based column index.
The value to filter by.
Optional
Filter options (operator defaults to 'Contains').
ControlError if the filter cannot be applied.
await filterByColumn(page, 'myTable', 1, 'Active', { operator: 'EQ' }); Copy
await filterByColumn(page, 'myTable', 1, 'Active', { operator: 'EQ' });
Applies a filter to a table column.