systelab-components-wdio-test
Version:
Widgets to be use in the E2E Tests based in WDIO
8 lines (7 loc) • 387 B
TypeScript
import { RemoteOptions } from "webdriverio";
import { BrowserType, RemoteApplication, RemoteHostData } from "../../wdio/index.js";
export declare class ApplicationRemoteClient {
static start(host: RemoteHostData, browserType: BrowserType, options: RemoteOptions): Promise<number>;
static stop(application: RemoteApplication): Promise<void>;
private static executeEndpoint;
}