@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
12 lines (11 loc) • 506 B
TypeScript
import { Browser, By, WebElement } from "../selenium";
import { UIComponent } from "./ui-component";
export declare class Toolbar extends UIComponent {
protected parentElement?: WebElement | By | string;
static SELECTOR: string;
constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string);
getButtonByIndex(index: number, { waitForChild }?: {
waitForChild?: boolean;
}): Promise<WebElement>;
clickButtonByIndex(index: number): Promise<void>;
}