Function: navigateToTile()
navigateToTile(
page,tileTitle,options?):Promise<void>
Defined in: src/modules/navigation.ts:186
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.
options?
Navigation options.
Returns
Promise<void>
Intent
Open a Fiori Launchpad tile by its visible title. Use when the agent needs to navigate via UI interaction rather than hash.
Guarantee
On success, the tile is clicked and UI5 stability is reached.
Prerequisite
The FLP home page must be loaded and the tile must be visible.
Ai Context
Use navigateToApp() for hash-based navigation; use this when the semantic object hash is unknown but the tile title is visible.
Sap Module
sap.ushell.ui.launchpad.Tile — FLP tile click navigation
Business Context
User-facing tile-based navigation on SAP Fiori Launchpad home screen.
Throws
NavigationError if tile is not found or not visible.
Example
await navigateToTile(page, 'Purchase Orders');