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

26 lines 689 B
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom'; 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 | null; /** * Returns the token description. */ findDescription(): ElementWrapper | null; /** * Returns the token tags. */ findTags(): Array<ElementWrapper> | null; /** * Returns the token dismiss button. */ findDismiss(): ElementWrapper | null; }