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').
ui5.table.filterByColumn
Filter a UI5 table column by a specified value and operator.
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.