@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
20 lines (19 loc) • 706 B
TypeScript
import { Browser, By, WebElement } from "../selenium";
import { UIComponent } from "./ui-component";
export declare class Spreadsheet extends UIComponent {
protected parentElement?: WebElement | By | string;
static SELECTOR: string;
static UNDO: By;
static REDO: By;
static FONT: By;
static FONT_SIZE: By;
static INCREASE_SIZE: By;
static DECREASE_SIZE: By;
static BOLD: string;
static ITALIC: By;
static UNDERLINE: By;
constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string);
cells(): Promise<WebElement[]>;
cellByIndex(index: number): Promise<WebElement>;
getToolByTitle(title: string): Promise<WebElement>;
}