@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
12 lines (11 loc) • 527 B
TypeScript
import { Browser, By, WebElement } from "../selenium";
import { UIComponent } from "./ui-component";
export declare class Rating extends UIComponent {
protected parentElement?: WebElement | By | string;
static SELECTOR: string;
constructor(browser: Browser, locator?: string, parentElement?: WebElement | By | string);
getItem(index: number): Promise<WebElement>;
selectItemByIndex(index: number): Promise<void>;
getRatingValue(): Promise<string>;
isItemSelected(index: number): Promise<boolean>;
}