@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
14 lines (13 loc) • 731 B
TypeScript
import { FuzzTestExpectations, UIComponent } from "./ui-component";
import { Browser, By, WebElement } from "../selenium";
export declare class Editor extends UIComponent {
protected parentElement?: WebElement | By | string;
static SELECTOR: string;
constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string);
getValue(): Promise<string>;
getToolByTitle(title: string): Promise<WebElement>;
focusToolByTitle(title: string): Promise<void>;
getEditableArea(): Promise<WebElement>;
getEditableContent(): Promise<WebElement>;
setMaliciousInputs(myInputElement?: WebElement, maliciousInputArray?: string[][], expectationsArray?: FuzzTestExpectations): Promise<void>;
}