UNPKG

@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

19 lines (18 loc) 895 B
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import ExpandableSectionWrapper from '../expandable-section'; export default class SideNavigationWrapper extends ComponentWrapper { static rootSelector: string; findHeaderLink(): ElementWrapper; findLinkByHref(href: string): ElementWrapper; findActiveLink(): ElementWrapper; findItemByIndex(index: number): SideNavigationItemWrapper; } export declare class SideNavigationItemWrapper extends ElementWrapper { findSection(): ExpandableSectionWrapper; findExpandableLinkGroup(): ExpandableSectionWrapper; findDivider(): ElementWrapper; findLink(): ElementWrapper; findSectionTitle(): ElementWrapper; findItemByIndex(index: number): SideNavigationItemWrapper; findItems(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<SideNavigationItemWrapper>; }