UNPKG

@progress/kendo-e2e

Version:

Kendo UI end-to-end test utilities.

9 lines (8 loc) 370 B
import { Browser, WebElement } from "../selenium"; import { ComboBox } from "./combobox"; export declare class MultiColumnComboBox extends ComboBox { static SELECTOR: string; constructor(browser: Browser, locator?: string, rootElement?: WebElement); getItemByIndex(index: number): Promise<WebElement>; getItemByText(text: string): Promise<WebElement>; }