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

    Function feGetListItemTitle

    • Gets the title of 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.

      Returns Promise<string>

      The title text of the list item.

      ControlError with ERR_CONTROL_AGGREGATION if the index is out of bounds.

      const title = await feGetListItemTitle(page, 'myApp--productList', 0);