0.1.0 • Published 6 years ago

wdio-screenshot-uploader-service v0.1.0

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

WDIO Screenshot Uploader Service

A WebdriverIO service for uploading screenshots to online storages

Installation

npm install wdio-screenshot-uploader-service --save-dev

Instructions on how to install WebdriverIO can be found here.

Configuration

In order to use the service you need to set screenshotUploaderOptions in your wdio.conf.js file. It will automatically upload all screenshots to each storage has the correct options.

// wdio.conf.js
export.config = {
  // ...
  services: ['screenshot-uploader'],
  screenshotUploaderOptions: {
      storages: ["amazon-s3"]
      storagesInfo: {
          "amazon-s3": {
              accessKeyId: 'topSeCretMa738',
              secretAccessKey: 'ThisAsWell&eeieyern',
              bucket: 'screenshot',
              ACL: 'public-read', //optional
              path: 'errorshots' , //optional
          }
      }
  }
  // ...
};

Options

ParamTypeDefaultDescription
screenshotUploaderOptionsObjectwdio.config.screenshotUploaderOptions
screenshotUploaderOptions.screenshotPathStringwdio.config.screenshotPathPath of screenshots
screenshotUploaderOptions.storagesArrayList of storage services to use e.g. "amazon-s3","google-cloud"
screenshotUploaderOptions.storagesInfoObjectCredentials and additional information for each service
screenshotUploaderOptions.cleanBooleantrueWhether or not to remove files from dir on initialization

Tests

npm test

Additional Info

For more information on WebdriverIO see the homepage.