@openfin/automation-helpers
Version:
Helper methods for automation testing in the OpenFin ecosystem
16 lines (15 loc) • 406 B
TypeScript
/**
* Methods for OpenFin Store object handling.
*/
export declare class OpenFinStore {
/**
* Show the store window.
* @param timeout The amount of time to wait for the store window to open.
* @returns True if the window was found and opened.
*/
static show(timeout: number): Promise<boolean>;
/**
* Hide the store window.
*/
static hide(): Promise<void>;
}