/** * 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: .forceAsyncCarousel. * Represents the force:asyncCarousel Aura component. * Check if it has a tab, get a tab by name, or get the active tab. * generated from JSON dist/force/asyncCarousel.utam.json * @version 2026-03-09T13:56:35.771Z * @author Salesforce */ export default class AsyncCarousel extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets a value indicating whether the carousel has a tab with the specified name * @return true if the carousel has a tab with the specified name; otherwise, false */ hasTab(tabName: string): Promise; /** * Switches to the tab with the specified name */ getTab(tabName: string): Promise; /** * Gets the text of the active tab * @return the text of the active tab */ getActiveTabName(): Promise; getTabs(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)[]>; }