@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
26 lines • 724 B
TypeScript
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors";
import OptionWrapper from '../internal/option';
export default class TokenWrapper extends ComponentWrapper {
static rootSelector: string;
protected findOption(): OptionWrapper;
/**
* Returns the token label.
*/
findLabel(): ElementWrapper;
/**
* Returns the token label tag.
*/
findLabelTag(): ElementWrapper;
/**
* Returns the token description.
*/
findDescription(): ElementWrapper;
/**
* Returns the token tags.
*/
findTags(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>;
/**
* Returns the token dismiss button.
*/
findDismiss(): ElementWrapper;
}