interface WindowInterface {
    find(searchInput): Promise<WindowElement>;
    findAll(searchInput): Promise<WindowElement[]>;
    focus(): Promise<boolean>;
    getElements(maxElements?): Promise<WindowElement>;
    getRegion(): Promise<Region>;
    getTitle(): Promise<string>;
    move(newOrigin): Promise<boolean>;
    on(searchInput, callback): void;
    resize(newSize): Promise<boolean>;
    waitFor<PROVIDER_DATA_TYPE>(searchInput, timeoutMs?, updateInterval?, params?): Promise<WindowElement>;
}

Implemented by

Methods

Generated using TypeDoc