/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: resourceId("com.salesforce.chatter:id/tab_bar"). * Represents the Android tab bar. * Check for a tab bar item and navigate to it, or open the menu tab. * generated from JSON dist/salesforceapp/navigation/navTabBarAndroid.utam.json * @version 2026-03-09T13:56:34.393Z * @author Salesforce */ export default class NavTabBarAndroid extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); openMenuSection(): Promise; clickTabBarItem(item: string): Promise; hasTabBarItem(item: string): Promise; getTabBarItems(): Promise<(_BaseUtamElement & _ClickableUtamElement)[]>; }