protractor-upa-stream-helper
v1.0.4
Published
Helper para llamadas async en base a un trackerid
Downloads
2
Readme
protractor-upa-stream-helper
Llama a upa async para y devuelve promesas de protractor. Documentacion!
Install
> $ npm install protractor-upa-stream-helper
Setup
var UpaStreamHelper = require('protractor-upa-stream-helper');
var myCookies = document.cookies(); // all cookies.
var myUpaEndpoint = "http://myendpoint.com";
var myUpa = new UpaStreamHelper(mycookies, myUpaEndpoint);
myUpa.getHistory().then(function(cache){
console.log(cache); // => Protractor.promise resolved => upa.response.body
});