/** * 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, ActionableUtamElement as _ActionableUtamElement } from '@utam/core'; /** * Selector: force-stacked-tab2 * Represents the stackedTab LWC component. * Click a tab by label or check if a tab by label is visible. * generated from JSON dist/force/stackedTab2.utam.json * @version 2026-03-09T13:56:35.886Z * @author Salesforce */ declare class StackedTab2 extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets a value indicating whether the tab is visible * @return true if the tab is visible; otherwise, false */ isTabVisible(): Promise; /** * Clicks the tab */ clickTab(): Promise; /** * Gets the text of the tab label * @return the text of the tab label */ getTabText(): Promise; getTabLabel(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; } export = StackedTab2;