UNPKG

@awsui/components-react

Version:

AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A

22 lines (21 loc) 872 B
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom'; export declare class CardSectionWrapper extends ComponentWrapper { findSectionHeader(): ElementWrapper | null; findContent(): ElementWrapper | null; } export declare class CardWrapper extends ComponentWrapper { findSections(): Array<CardSectionWrapper>; findCardHeader(): ElementWrapper | null; findSelectionArea(): ElementWrapper | null; } export default class CardsWrapper extends ComponentWrapper { static rootSelector: string; private containerWrapper; findItems(): Array<CardWrapper>; findSelectedItems(): Array<CardWrapper>; findHeader(): ElementWrapper | null; findHeaderRegion(): ElementWrapper | null; findEmptyRegion(): ElementWrapper | null; findEmptySlot(): ElementWrapper | null; findLoadingText(): ElementWrapper | null; }