Creates DriverService objects that manage a WebDriver server in a child process.

Hierarchy

Constructors

  • Parameters

    • exe: string

      Path to the executable to use. This executable must accept the --port flag for defining the port to start the server on.

    Returns Builder

    Throws

    If the provided executable path does not exist.

Methods

  • Define additional command line arguments to use when starting the server.

    Parameters

    • Rest ...var_args: string[]

      The arguments to include.

    Returns Builder

    A self reference.

  • Creates a new DriverService using this instance's current configuration.

    Returns DriverService

    A new driver service.

  • Defines the environment to start the server under. This setting will be inherited by every browser session started by the server. By default, the server will inherit the enviroment of the current process.

    Parameters

    • env: null | Map<string, string> | {
          [name: string]: string;
      }

      The desired environment to use, or null if the server should inherit the current environment.

    Returns Builder

    A self reference.

  • Sets the host name to access the server on. If specified, the #setLoopback() loopback setting will be ignored.

    Parameters

    • hostname: string

    Returns Builder

    A self reference.

  • Sets whether the service should be accessed at this host's loopback address.

    Parameters

    • loopback: boolean

    Returns Builder

    A self reference.

  • Sets the base path for WebDriver REST commands (e.g. "/wd/hub"). By default, the driver will accept commands relative to "/".

    Parameters

    • basePath: null | string

      The base path to use, or null to use the default.

    Returns Builder

    A self reference.

  • Sets the port to start the server on.

    Parameters

    • port: number

      The port to use, or 0 for any free port.

    Returns Builder

    A self reference.

    Throws

    If an invalid port is specified.

Generated using TypeDoc