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
- Host: GitHub
- URL: https://github.com/nightwatchjs/nightwatch-plugin-browserstack
- Owner: nightwatchjs
- License: mit
- Created: 2022-11-21T08:10:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T05:59:52.000Z (6 months ago)
- Last Synced: 2025-04-29T05:28:28.263Z (2 months ago)
- Language: JavaScript
- Homepage: https://browserstack.com/docs/local-testing
- Size: 742 KB
- Stars: 5
- Watchers: 4
- Forks: 20
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# @nightwatch/browserstack
![]()
![]()
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