/** * 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'; /** * Selector: lightning-progress-bar * Represents the lightning-progress-bar Lightning web component. * Get the assistive text. Get the current value of the bar. Check if the bar is busy. * generated from JSON dist/lightning/progressBar.utam.json * @version 2026-03-09T13:56:36.199Z * @author Salesforce */ export default class ProgressBar extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get assistive input description of progress bar * @return string */ getAssistiveText(): Promise; /** * Is progress bar busy * @return boolean */ isBusy(): Promise; /** * Get the percentage value of the progress bar * @return string */ getValue(): Promise; }