@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
15 lines • 541 B
TypeScript
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
export declare class SegmentWrapper extends ComponentWrapper {
findDisabledReason(): ElementWrapper | null;
}
export default class SegmentedControlWrapper extends ComponentWrapper {
static rootSelector: string;
findSegments(): Array<ElementWrapper>;
findSelectedSegment(): ElementWrapper | null;
/**
* Finds the segment with the given ID.
*
* @param id ID of the element to return.
*/
findSegmentById(id: string): SegmentWrapper | null;
}