/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: lightning-progress-step * Represents the lightning-progress-step Lightning web component. * Click the progress button. Get the label text or the class attribute. * generated from JSON dist/lightning/progressStep.utam.json * @version 2026-03-09T13:56:36.206Z * @author Salesforce */ declare class ProgressStep extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on progress step */ click(): Promise; /** * Get progress step class name * @return string */ getClassName(): Promise; /** * Is progress step in focus * @return boolean */ isFocused(): Promise; /** * Get progress step label * @return string */ getLabelText(): Promise; /** * Get progress step attribute by name * @return string */ getAttribute(attribute: string): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; } export = ProgressStep;