@testplane/webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
15 lines • 669 B
TypeScript
import type { Capabilities } from '@testplane/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 or devtools session
* before it was started.
*/
static reloadSession(): void;
static attachToSession(options: never, modifier?: Function): any;
}
//# sourceMappingURL=protocol-stub.d.ts.map