@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
24 lines • 1.02 kB
TypeScript
import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
import ButtonWrapper from '../button';
export default class SplitPanelWrapper extends ComponentWrapper {
static rootSelector: string;
findHeader(): ElementWrapper;
findPreferencesButton(): ButtonWrapper | null;
findCloseButton(): ButtonWrapper | null;
findOpenButton(): ButtonWrapper | null;
findSlider(): ElementWrapper | null;
findHeaderActions(): ElementWrapper | null;
findHeaderBefore(): ElementWrapper | null;
findHeaderDescription(): ElementWrapper | null;
findHeaderInfo(): ElementWrapper | null;
/**
* 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(): SplitPanelWrapper | null;
/**
* 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(): SplitPanelWrapper | null;
}