# wdio-trueautomation-service

> TrueAutomation.IO integration for webdriver.io

Latest version **0.4.2** (published 2020-07-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install wdio-trueautomation-service
pnpm add wdio-trueautomation-service
yarn add wdio-trueautomation-service
bun add wdio-trueautomation-service
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.2 |
| Published | 2020-07-16 |
| First published | 2018-11-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 11.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Softesis Inc. |
| Maintainers | ikonyshev |
| Keywords | trueautomation, trueautomation.io, automation, testing, qa, wdio-service, wdio-plugin, wdio |

## Links

- npm: https://www.npmjs.com/package/wdio-trueautomation-service
- Repository: https://github.com/trueautomation/wdio-trueautomation-service
- Homepage: https://github.com/trueautomation/wdio-trueautomation-service#readme
- Issues: https://github.com/trueautomation/wdio-trueautomation-service/issues
- npm.io page: https://npm.io/package/wdio-trueautomation-service

## Dependencies (3)

- [which](https://npm.io/package/which.md) ^1.3.1
- [node-fetch](https://npm.io/package/node-fetch.md) ^2.2.0
- [is-port-reachable](https://npm.io/package/is-port-reachable.md) ^2.0.0

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 0.4.2 (latest) — 2020-07-16
- 0.4.1 — 2020-03-05
- 0.4.0 — 2019-11-22
- 0.3.8 — 2019-06-12
- 0.3.7 — 2019-02-15
- 0.3.6 — 2019-01-24
- 0.3.5 — 2019-01-13
- 0.3.3 — 2018-11-15
- 0.3.2 — 2018-11-15
- 0.3.1 — 2018-11-09
- 0.3.0 — 2018-11-01

## README

WDIO TrueAutomation.IO Service
=========

This service allows to run TrueAutomation.IO tests with the [WDIO TestRunner](http://webdriver.io/guide/testrunner/gettingstarted.html). 
It should be used with [trueautomation-helper](https://github.com/trueautomation/trueautomation-helper-js) module.

## Installation

The easiest way is to keep `wdio-trueautomation-service` as a devDependency in your `package.json`.

```json
{
  "devDependencies": {
    "wdio-trueautomation-service": "~0.4"
  }
}
```

You can simple do it by:

```bash
npm install wdio-trueautomation-service --save-dev
```

Instructions on how to install `WebdriverIO` can be found [here.](http://webdriver.io/guide/getstarted/install.html)

## Configuration

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

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

## Remote webdriver

By default TrueAutomation.IO works only with local webdrivers managed by its client.
To connect to remote webdriver use `remote` option in `wdio.conf.js`:

```js
// wdio.conf.js
export.config = {
  // ...
  services: ['trueautomation'],
  remote: true,
  hostname: 'example.com',
  port: 4444
  // ...
};
```

In this case TrueAutomation.IO client will be started locally on port 9151 and
connect to remote webdriver specified in wdio config options.

## Options

### trueautomationLog
Path to logfile

Type: `String`

Default: `log/trueautomation-${Date.now()}.log`

### trueautomationPort
Port that `truautomation` will be listen to

Type: `Integer`

Default: `9515`

### driver
TrueAutomation.IO driver to use

Type: `String`

Default: `chromedriver`

### driverVersion
TrueAutomation.IO driver version to use

Type: `String`

Default: `latest`

---
_Source: https://npm.io/package/wdio-trueautomation-service · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
