Package Exports
- nodeclient-spectre
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nodeclient-spectre) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node client for Spectre
A node.js client to connect to the web application Spectre.
Installation
Install via npm as usual
$ npm install nodeclient-spectre --save
Usage Example
const fs = require('fs');
const path = require('path');
const SpectreClient = require('nodeclient-spectre');
const spectreUrl = 'http://localhost:3000';
// read binary data
const bitmap1 = fs.readFileSync(path.join(__dirname, 'img/img1.png'));
// convert binary data to base64 encoded string
const screenshot1Base64 = new Buffer(bitmap1).toString('base64');
// read binary data
const bitmap2 = fs.readFileSync(path.join(__dirname, 'img/img2.png'));
// convert binary data to base64 encoded string
const screenshot2Base64 = new Buffer(bitmap2).toString('base64');
const spectreClientInstance = new SpectreClient(spectreUrl);
Promise
.resolve()
.then(() => {
return spectreClientInstance.createTestrun("Projekt", "Suite");
})
.then((result) => {
return spectreClientInstance.submitScreenshot("Testimage", "Testbrowser", 480, screenshot1Base64, result.id)
})
.then(() => {
return spectreClientInstance.createTestrun("Projekt", "Suite");
})
.then((result) => {
return spectreClientInstance.submitScreenshot("Testimage", "Testbrowser", 480, screenshot2Base64, result.id)
});