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

    Function feClickListItem

    • Clicks (presses) a list item at the specified index.

      Parameters

      • page: FEListPage

        Playwright Page (or compatible subset).

      • listId: string

        The UI5 control ID of the list.

      • itemIndex: number

        Zero-based index of the item to click.

      Returns Promise<void>

      Fires the press event on the list item. Falls back to tap if firePress is unavailable.

      ControlError with ERR_CONTROL_AGGREGATION if the index is invalid.

      await feClickListItem(page, 'myApp--productList', 0);