@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
16 lines (15 loc) • 763 B
TypeScript
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors";
import ToggleWrapper from '../toggle';
export default class VisibleContentPreferenceWrapper extends ComponentWrapper {
static rootSelector: string;
findTitle(): ElementWrapper;
findOptionsGroups(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>;
findOptions(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>;
/**
* Returns a content selector toggle.
*
* @param groupIndex 1-based index of the content group.
* @param optionIndex 1-based index of the option to return within the group.
*/
findToggleByIndex(groupIndex: number, optionIndex: number): ToggleWrapper;
}