/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _ProgressStep from 'salesforce-pageobjects/lightning/pageObjects/progressStep'; /** * Selector: lightning-progress-indicator. * Represents the lightning-progress-indicator Lightning web component. * Get the lightning-pregress-step component by label. * Get all the progress steps or progress steps with errors. Get the current step or the completed steps. * generated from JSON dist/lightning/progressIndicator.utam.json * @version 2026-03-09T13:56:36.200Z * @author Salesforce */ export default class ProgressIndicator extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get label span attribute * @return string */ getLabelSpanAttribute(attribute: string): Promise; /** * Get ul attribute by name * @return string */ getUlAttribute(attribute: string): Promise; getStep(step: number): Promise<_ProgressStep>; getProgressSteps(): Promise<_ProgressStep[]>; getStepWithLabel(partialLabel: string): Promise<_ProgressStep>; getStepWithError(): Promise<_ProgressStep | null>; getCurrentStep(): Promise<_ProgressStep | null>; getCompletedItem(): Promise<_ProgressStep | null>; }