@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
24 lines (23 loc) • 1.25 kB
TypeScript
import { ElementWrapper, ComponentWrapper } from "@awsui/test-utils-core/selectors";
import InputWrapper from '../input';
import OptionWrapper from '../internal/option';
export declare class AutosuggestDropdownWrapper extends ComponentWrapper {
findOptions(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<OptionWrapper>;
findOption(optionIndex: number): OptionWrapper;
findOptionByValue(value: string): OptionWrapper;
findOptionInGroup(groupIndex: number, optionIndex: number): OptionWrapper;
findOptionsContainer(): ElementWrapper;
findFooterRegion(): ElementWrapper;
findOpenDropdown(): ElementWrapper;
findHighlightedOption(): OptionWrapper;
findDisabledOptions(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<OptionWrapper>;
findHighlightedMatches(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>;
findHighlightedAriaLiveRegion(): ElementWrapper;
}
export default class AutosuggestWrapper extends InputWrapper {
static rootSelector: string;
findDropdown(): AutosuggestDropdownWrapper;
findStatusIndicator(): ElementWrapper;
findErrorRecoveryButton(): ElementWrapper;
findEnteredTextOption(): ElementWrapper;
}