wdio-ywinappdriver-service
Version:
A WebdriverIO service to start & stop YWinAppDriver
107 lines (79 loc) • 2.04 kB
Markdown
when running tests with the [WDIO testrunner](https://webdriver.io/guide/testrunner/gettingstarted.html). It starts the [ywinappdriver](https://github.com/licanhua/YWinAppDriver) in a child process.
```bash
npm install wdio-ywinappdriver-service --save-dev
```
Instructions on how to install `WebdriverIO` can be found [here.](https://webdriver.io/docs/gettingstarted.html)
In order to use the service you need to add `ywinappdriver` to your service array:
```js
// wdio.conf.js
export.config = {
// ...
services: ['ywinappdriver'],
// ...
};
```
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:
```js
// wdio.conf.js
export.config = {
// ...
services: [
['ywinappdriver', {
// ywinappdriver service options here
// ...
}]
],
// ...
};
```
Path where all logs from the ywinappdriver server should be stored.
Type: `String`
Example:
```js
export.config = {
// ...
services: [
['ywinappdriver', {
logPath : './'
}]
],
// ...
}
```
To use your own installation of winappdriver, e.g. globally installed, specify the command which should be started.
Type: `String`
Example:
```js
export.config = {
// ...
services: [
['ywinappdriver', {
command : 'c:\\xx\\ywinappdriver.exe'
}]
],
// ...
}
```
List of arguments passed directly to `ywinappdriver`.
See [the documentation](https://github.com/licanhua/ywinappdriver) for possible arguments.
Type: `Array`
Default: `[]`
Example:
```js
export.config = {
// ...
services: [
['ywinappdriver', {
args: ['--urls' 'http://127.0.0.1:4723' '--basepath' '/wd/hub']
}]
],
// ...
}
```
This service helps you to run the ywinappdriver server seamlessly