@testplane/webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
13 lines (12 loc) • 476 B
TypeScript
import type { Automation, Capabilities } from '@testplane/wdio-types';
interface ProtocolDriver {
Driver: Automation.Driver<Capabilities.RemoteConfig>;
options: Capabilities.WebdriverIOConfig;
}
/**
* get protocol driver
* @param {Capabilities.WebdriverIOConfig} options remote options
* @return {Automation.Driver} automation driver
*/
export declare function getProtocolDriver(options: Capabilities.WebdriverIOConfig): Promise<ProtocolDriver>;
export {};