UNPKG

webdriverio

Version:

Next-gen browser and mobile automation test framework for Node.js

14 lines 632 B
import type { Capabilities } from '@wdio/types'; /** * create `browser` object with capabilities and environment flags before session is started * so that Mocha/Jasmine users can filter their specs based on flags or use capabilities in test titles */ export default class ProtocolStub { static newSession(options: Capabilities.RemoteConfig): Promise<WebdriverIO.Browser>; /** * added just in case user wants to somehow reload webdriver before it was started. */ static reloadSession(): void; static attachToSession(options: never, modifier?: Function): any; } //# sourceMappingURL=protocol-stub.d.ts.map