An open API service indexing awesome lists of open source software.

https://github.com/nightwatchjs/nightwatch-plugin-browserstack

Official @nightwatchjs plugin to integrate with Browserstack Local
https://github.com/nightwatchjs/nightwatch-plugin-browserstack

Last synced: about 2 months ago
JSON representation

Official @nightwatchjs plugin to integrate with Browserstack Local

Awesome Lists containing this project

README

        

# @nightwatch/browserstack


Nightwatch.js Logo

Official Nightwatch plugin for integration with the BrowserStack.

```
npm i @nightwatch/browserstack --save-dev
```

## Usage:

Update your [Nightwatch configuration](https://nightwatchjs.org/guide/configuration/overview.html) and add the plugin to the list:

```js
module.exports = {
plugins: ['@nightwatch/browserstack'],

// browserstack plugin settings...
'@nightwatch/browserstack': {
browserstackLocal: true, // set true to manage browserstack local tunnel. Defaults to false.
browserstackLocalOptions: {
// other browserstack local options
},
test_observability: {
enabled: true, // set true for enabling browserstack test observability
user: '${BROWSERSTACK_USERNAME}',
key: '${BROWSERSTACK_ACCESS_KEY}',
projectName: "BrowserStack Samples",
buildName: "browserstack build"
}
},

// other nightwatch settings...
}
```
## License
MIT