Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Function filterByColumn

    • Applies a filter to a table column.

      Parameters

      • page: TableFilterSortPage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID.

      • columnIndex: number

        Zero-based column index.

      • filterValue: string

        The value to filter by.

      • Optionaloptions: TableFilterOptions

        Filter options (operator defaults to 'Contains').

      Returns Promise<void>

      ControlError if the filter cannot be applied.

      await filterByColumn(page, 'myTable', 1, 'Active', { operator: 'EQ' });