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

    Function navigateToTile

    • Ai

      Navigates to an FLP tile by its title text.

      Parameters

      • page: NavigationPage

        Playwright Page (or compatible subset).

      • tileTitle: string

        Title text of the FLP tile.

      • Optionaloptions: NavigationOptions

        Navigation options.

      Returns Promise<void>

      This function only works for GenericTile-based FLP layouts (classic FLP). For modern Space/Section-based FLP layouts (BTP Work Zone, S/4HANA 2021+), use navigateToSpace and navigateToSectionLink from navigation-space.ts instead.

      ui5Navigation.navigateToTile

      Open a Fiori Launchpad tile by its visible title. Use when the agent needs to navigate via UI interaction rather than hash.

      On success, the tile is clicked and UI5 stability is reached.

      The FLP home page must be loaded and the tile must be visible.

      Use navigateToApp() for hash-based navigation; use this when the semantic object hash is unknown but the tile title is visible. For Space-based FLP layouts, use navigateToSpace() + navigateToSectionLink().

      sap.ushell.ui.launchpad.Tile — FLP tile click navigation (GenericTile layout only)

      User-facing tile-based navigation on SAP Fiori Launchpad home screen.

      NavigationError if tile is not found or not visible.

      await navigateToTile(page, 'Purchase Orders');