wdio-safaridriver-service
Version:
WebdriverIO service to start & stop Safaridriver
22 lines • 681 B
TypeScript
import type { SafaridriverOptions } from 'safaridriver';
export interface ServiceOptions extends SafaridriverOptions {
/**
* The port on which the driver should run on.
*/
port?: number;
/**
* The path where the output of the Safaridriver server should
* be stored (uses the `config.outputDir` by default when not set).
*/
outputDir?: string;
/**
* The name of the log file to be written in outputDir.
*/
logFileName?: string;
/**
* Array of arguments to pass to the safaridriver executable.
* `-p` will use wdioConfig.port if not specified.
*/
args?: string[];
}
//# sourceMappingURL=types.d.ts.map