import { BrowserSessionId, ProjectId, UserId, WebmateSeleniumSessionId } from "../types"; import { Browser } from "../browser"; /** * Representation of a Selenium session in webmate. */ export declare class SeleniumSession { readonly id: WebmateSeleniumSessionId; readonly userId: UserId; readonly browser: Browser; readonly usingProxy: boolean; readonly state: string; readonly seleniumCapabilities: any; readonly projectId: ProjectId; readonly browserSessionId: BrowserSessionId; readonly errorMessage: string; constructor(id: WebmateSeleniumSessionId, userId: UserId, browser: Browser, usingProxy: boolean, state: string, seleniumCapabilities: any, projectId: ProjectId, browserSessionId: BrowserSessionId, errorMessage: string); }