UNPKG

@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

21 lines (20 loc) 828 B
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import ButtonWrapper from '../button'; export default class SplitPanelWrapper extends ComponentWrapper { static rootSelector: string; findHeader(): ElementWrapper; findPreferencesButton(): ButtonWrapper; findCloseButton(): ButtonWrapper; findOpenButton(): ButtonWrapper; findSlider(): ElementWrapper; /** * Returns the same panel if it's currently open in bottom position. If not, it returns null. * Use this method to assert the panel position. */ findOpenPanelBottom(): ElementWrapper; /** * Returns the same panel if it's currently open in side position. If not, it returns null. * Use this method to assert the panel position. */ findOpenPanelSide(): ElementWrapper; }