/** * 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 } from '@utam/core'; /** * Component that displays a progress bar with dynamic size (large or small), showing percentage completion and step completion details. * Selector: src-assistant-progress-bar * generated from JSON dist/setup/assistantProgressBar.utam.json * @version 2026-03-09T13:56:37.000Z * @author Salesforce */ export default class AssistantProgressBar extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the progress bar container is visible * @return boolean * @param selectorStr CSS selector parameter */ isProgressBarVisible(selectorStr: string): Promise; /** * Check if the large progress bar is visible * @return boolean */ isLargeProgressBarVisible(): Promise; /** * Get the text of the progress label for the large progress bar * @return string */ getProgressLabelText(): Promise; /** * Get the text of the completion label for the large progress bar * @return string */ getCompletionLabelText(): Promise; /** * Check if the circular progress bar is visible * @return boolean */ isCircularProgressBarVisible(): Promise; /** * Get the width style of the progress bar filled portion * @return string */ getProgressValueWidth(attrName: string): Promise; /** * Get the assistive text for the progress bar * @return string */ getAssistiveText(): Promise; /** * Check if the small progress bar is visible * @return boolean */ isSmallProgressBarVisible(): Promise; /** * Get the percentage completion text for the small progress bar * @return string */ getPercentCompleteText(): Promise; /** * Get the step completion text for the small progress bar * @return string */ getStepsCompleteText(): Promise; /** * Returns true if element "largeProgressBar" present on the page * @return boolean */ verifyLargeProgressBarPresence(): Promise; /** * Returns true if element "smallProgressBar" present on the page * @return boolean */ verifySmallProgressBarPresence(): Promise; }