@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
13 lines (12 loc) • 489 B
TypeScript
import { Browser, By, WebElement } from "../selenium";
import { Input } from "./input";
export declare class NumericTextBox extends Input {
protected parentElement?: WebElement | By | string;
static SELECTOR: string;
constructor(browser: Browser, locator?: By | string, parentElement?: WebElement | By | string);
setValue(value: string, { clear }?: {
clear?: boolean;
}): Promise<void>;
increaseValue(): Promise<void>;
decreaseValue(): Promise<void>;
}