wdio-ywinappdriver-service
TypeScript icon, indicating that this package has built-in type declarations

0.2.54 • Public • Published

WebdriverIO ywinappdriver Service

This service helps you to run the ywinappdriver server seamlessly when running tests with the WDIO testrunner. It starts the ywinappdriver in a child process.

Installation

npm install wdio-ywinappdriver-service --save-dev

Instructions on how to install WebdriverIO can be found here.

Configuration

In order to use the service you need to add ywinappdriver to your service array:

// wdio.conf.js
export.config = {
    // ...
    services: ['ywinappdriver'],
    // ...
};

Options

The following options can be added to the wdio.conf.js file. To define options for the service you need to add the service to the services list in the following way:

// wdio.conf.js
export.config = {
    // ...
    services: [
        ['ywinappdriver', {
            // ywinappdriver service options here
            // ...
        }]
    ],
    // ...
};

logPath

Path where all logs from the ywinappdriver server should be stored.

Type: String

Example:

export.config = {
    // ...
    services: [
        ['ywinappdriver', {
            logPath : './'
        }]
    ],
    // ...
}

command

To use your own installation of winappdriver, e.g. globally installed, specify the command which should be started.

Type: String

Example:

export.config = {
    // ...
    services: [
        ['ywinappdriver', {
            command : 'c:\\xx\\ywinappdriver.exe'
        }]
    ],
    // ...
}

args

List of arguments passed directly to ywinappdriver.

See the documentation for possible arguments.

Type: Array

Default: []

Example:

export.config = {
    // ...
    services: [
        ['ywinappdriver', {
            args: ['--urls' 'http://127.0.0.1:4723' '--basepath' '/wd/hub']
        }]
    ],
    // ...
}

Dependencies (2)

Dev Dependencies (8)

Package Sidebar

Install

npm i wdio-ywinappdriver-service

Weekly Downloads

26

Version

0.2.54

License

MIT

Unpacked Size

11.4 MB

Total Files

50

Last publish

Collaborators

  • licanhua