UNPKG

webdriver

Version:

A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol

23 lines 652 B
import type { BrowserSocket } from './bidi/socket.js'; import type { FetchRequest } from './request/web.js'; /** * @internal */ export declare const isNode: boolean; export interface EnvironmentVariables { WEBDRIVER_CACHE_DIR?: string; PROXY_URL?: string; } export interface EnvironmentDependencies { Request: typeof FetchRequest; Socket: typeof BrowserSocket; variables: EnvironmentVariables; } /** * Holder for environment dependencies. These dependencies cannot * be used during the module instantiation. */ export declare const environment: { value: EnvironmentDependencies; }; //# sourceMappingURL=environment.d.ts.map