/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: resourceId("com.salesforce.chatter:id/ui_common__toolbar_container"). * Represents the Android toolbar at the top of the tabbed activity. * Access the profile menu, load notifications, search, toggle favorite, or toggle overflow. * generated from JSON dist/salesforceapp/navigation/navBarAndroid.utam.json * @version 2026-03-09T13:56:34.361Z * @author Salesforce */ export default class NavBarAndroid extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); clickProfile(): Promise; openSearch(): Promise; openNotifications(): Promise; clickItem(label: string): Promise; clickNew(): Promise; clickShare(): Promise; getTitleText(): Promise; toggleFavorite(): Promise; waitForIsFavorite(): Promise; waitForIsNotFavorite(): Promise; openOverflow(): Promise; }