1.0.4 • Published 8 years ago

protractor-upa-stream-helper v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

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
});