1.1.1 • Published 8 years ago

selenium-error-finder v1.1.1

Weekly downloads
2
License
MIT
Repository
-
Last release
8 years ago

selenium-error-finder

Usage:

$ npm install
$ sef --hypothetical-help

  Usage
  $ sef --config configuration-file.js

Sample configuration

module.exports = {
  webroot: "http://localhost:8000",
  webdriverServer: "http://localhost:9515",
  ignoreLogsMatching: [
    /cast_sender/,
    /favicon/,
  ],
  capabilities: {
    'browserName': 'chrome',
  },
  urlFile: 'list.txt',
}

Using Browserstack

module.exports = {
  webroot: "http://localhost:8000",
  ignoreLogsMatching: [
    /cast_sender/,
    /favicon/,
  ],
  capabilities: {
    'browserName': 'chrome',
    'browserstack.user': 'USERNAME',
    'browserstack.key': 'KEY',
    // see Browserstack configuration:
    'browserstack.local': 'true',
    'browserstack.localIdentifier': 'SOME_IDENTIFIER'
  },
  urlFile: 'list.txt',
}

License

MIT (http://opensource.org/licenses/mit-license.php)