UNPKG

webdriver

Version:

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

13 lines 483 B
import { WebDriverRequest } from './request.js'; import type { RequestOptions } from './types.js'; /** * Node implementation of WebDriverRequest using undici fetch */ export declare class FetchRequest extends WebDriverRequest { fetch(url: URL, opts: RequestInit): Promise<Response>; createOptions(options: RequestOptions, sessionId?: string, isBrowser?: boolean): Promise<{ url: URL; requestOptions: RequestInit; }>; } //# sourceMappingURL=node.d.ts.map