protractor-intercept

1.0.2 • Public • Published

protractor-intercept Build Status

Simple Interception of the XMLHttpRequest on the current context.

Install

$ npm install --save protractor-intercept

Usage

var Intercept = require('protractor-intercept');
 
var intercept = new Intercept(browser);
 
describe('Intecept XHttpRequests', function() {
  it('can add the listener to your page', function() {
    browser.get('https://docs.angularjs.org/api');
    intercept.addListener();
    element(by.linkText('angular.isFunction')).click();
    intercept.getRequests().then(function(reqs) {
      //make some assertions about what happened here
    });
  });
});

License

MIT © Steven Bassett

/protractor-intercept/

    Package Sidebar

    Install

    npm i protractor-intercept

    Weekly Downloads

    176

    Version

    1.0.2

    License

    MIT

    Last publish

    Collaborators

    • bassettsj