UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

17 lines 666 B
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import ButtonWrapper from '../button'; export default class ProgressBarWrapper extends ComponentWrapper { static rootSelector: string; findPercentageText(): ElementWrapper; findResultButton(): ButtonWrapper; /** * Returns the result text. * * @param status * * [optional] Status of the result text. It can be aither "error" or "succes". * If not specified, the method returns the result text that is currently displayed, independently of the result status. */ findResultText(status?: string): ElementWrapper; findAdditionalInfo(): ElementWrapper; }