UNPKG

systelab-components-wdio-test

Version:
16 lines (15 loc) 536 B
import { RemoteOptions } from "webdriverio"; import { BrowserType } from "./automation-environment.js"; export interface Application { id: number; browserType: BrowserType; options: RemoteOptions; browser: WebdriverIO.Browser; } export declare class ApplicationManager { private static nextId; private static applications; static start(browserType: BrowserType, options: RemoteOptions): Promise<Application>; static stop(id: number): Promise<void>; static get(id: number): Application | undefined; }