@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 (16 loc) • 688 B
TypeScript
import { ElementWrapper } from '@awsui/test-utils-core/dom';
import CommonChartWrapper from '../internal/charts';
export default class PieChartWrapper extends CommonChartWrapper {
static rootSelector: string;
findFilterContainer(): ElementWrapper | null;
findSegments(): Array<ElementWrapper>;
findHighlightedSegment(): ElementWrapper | null;
findChart(): ElementWrapper | null;
/**
* Returns a focusable element that controls keyboard interactions.
*/
findApplication(): ElementWrapper | null;
findInnerContent(): ElementWrapper | null;
findSegmentLabels(): Array<ElementWrapper>;
findHighlightedSegmentLabel(): ElementWrapper | null;
}