UNPKG

@progress/kendo-e2e

Version:

Kendo UI end-to-end test utilities.

13 lines (12 loc) 482 B
import { Browser, By, WebElement } from "../selenium"; import { UIComponent } from "./ui-component"; import { Stepper } from "./stepper"; export declare class Wizard extends UIComponent { protected parentElement?: WebElement | By | string; static SELECTOR: string; static PREVIOUS: string; static NEXT: string; static DONE: string; constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string); stepper(): Promise<Stepper>; }