@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
27 lines (26 loc) • 1.08 kB
TypeScript
import { ElementWrapper } from "@awsui/test-utils-core/selectors";
import ButtonWrapper from '../button';
import FormWrapper from '../form';
export default class WizardWrapper extends FormWrapper {
static rootSelector: string;
findHeader(): ElementWrapper;
findInfo(): ElementWrapper;
findCancelButton(): ButtonWrapper;
findSkipToButton(): ButtonWrapper;
findPreviousButton(): ButtonWrapper;
findPrimaryButton(): ButtonWrapper;
findMenuNavigationLinks(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>;
/**
* Returns a link for a given step number.
*
* @param stepNumber 1-based step index
* @param state
*
* [optional] State of the link. The method returns null if the specified step does not match the state. It can be
* - "disabled": for disabled menu entries
* - "active": for the active menu entry
* - undefined: for any entry
*/
findMenuNavigationLink(stepNumber: number, state?: string): ElementWrapper;
findSecondaryActions(): ElementWrapper;
}