Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    Preparing search index...

    Function navigateToItem

    • Navigates to a table item by row index. Fires press/tap on the row.

      Parameters

      • page: ListReportPage

        Playwright Page (or compatible subset).

      • tableId: string

        The UI5 control ID of the table.

      • rowIndex: number

        Zero-based row index to navigate to.

      • Optionaloptions: ListReportOptions

        Optional timeout and stability settings.

      Returns Promise<void>

      Navigate from the List Report to an Object Page by clicking a table row.

      fe.listReport.navigateToItem

      ControlError if the table is not found or the index is out of bounds.

      await navigateToItem(page, 'app--table', 0);