UNPKG

@progress/kendo-e2e

Version:

Kendo UI end-to-end test utilities.

11 lines (10 loc) 411 B
import { Browser, By, WebElement } from "../selenium"; import { Input } from "./input"; export declare class MaskedTextBox extends Input { protected parentElement?: WebElement | By | string; static SELECTOR: string; constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string); setValue(value: string, { clear }?: { clear?: boolean; }): Promise<void>; }