/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: one-app-nav-bar-menu-item. * Represents the one-app-nav-bar-menu-item Lightning web component. * Access the link or its inner text. * generated from JSON dist/global/appNavBarMenuItem.utam.json * @version 2026-03-09T13:56:35.920Z * @author Salesforce */ export default class AppNavBarMenuItem extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the inner text * @return the inner text */ getInnerText(): Promise; /** * Clicks the link and waits for a specific URL match * @return none */ clickAndWaitForUrl(url: string): Promise; getLink(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }