/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _CarouselImage from 'salesforce-pageobjects/lightning/pageObjects/carouselImage'; /** * Selector: lightning-carousel * Represents the lightning-carousel Lightning web component. * Click the scroll button to autoplay. Get all carousel panels * Click to autoplay carousel, Get all carousel images, and Wait for carousel autoplay to start * generated from JSON dist/lightning/carousel.utam.json * @version 2026-03-09T13:56:36.008Z * @author Salesforce */ export default class Carousel extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click to autoplay carousel panels */ clickAutoPlay(): Promise; /** * Get all carousel images */ getCarouselImages(): Promise<_CarouselImage[]>; /** * Wait for carousel autoplay to start */ waitForAutoplay(): Promise; getCarouselContainer(ContainerCtor: _ContainerCtor): Promise; getAutoplay(): Promise<(_BaseUtamElement & _ClickableUtamElement) | null>; getTabItems(): Promise<(_BaseUtamElement & _ClickableUtamElement)[]>; getActiveTabItem(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }