UNPKG

@progress/kendo-e2e

Version:

Kendo UI end-to-end test utilities.

12 lines (11 loc) 536 B
import { Browser, By, WebElement } from "../selenium"; import { UIComponent } from "./ui-component"; export declare class TileLayout extends UIComponent { protected parentElement?: WebElement | By | string; static SELECTOR: string; static ITEM: string; constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string); getItemByIndex(index: number): Promise<WebElement>; getItemTextByIndex(index: number): Promise<string>; getItemHeaderByIndex(index: number): Promise<WebElement>; }