UNPKG

wdio-safaridriver-service

Version:
22 lines 681 B
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