@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
13 lines (12 loc) • 554 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;
findInnerContent(): ElementWrapper | null;
findSegmentLabels(): Array<ElementWrapper>;
findHighlightedSegmentLabel(): ElementWrapper | null;
}