@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 • 688 B
TypeScript
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
import ButtonWrapper from '../button';
export default class ProgressBarWrapper extends ComponentWrapper {
static rootSelector: string;
findPercentageText(): ElementWrapper | null;
findResultButton(): ButtonWrapper | null;
/**
* 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 | null;
findAdditionalInfo(): ElementWrapper | null;
}