askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
13 lines (12 loc) • 420 B
TypeScript
import { UiControllerArgs } from './ui-controller-args';
/**
* @deprecated Will be removed soon because the AskUI Controller
* gets started as an operating system service.
*/
export declare class UiController {
private args?;
private server;
constructor(args?: UiControllerArgs | undefined);
start(timeoutInSeconds?: number): Promise<void>;
stop(forceStop?: boolean): Promise<void>;
}