使用量角器测试登录页面AngularJS

时间:2016-01-26 15:11:14

标签: angularjs protractor angularjs-e2e

我正在尝试为我的登录页面编写e2e测试。如果我需要使用http状态和用户名和令牌获得响应,有没有简单的方法来模拟我的后端?

我是这样的:

 $httpBackend.whenPOST(apiURL + '/security/login-processing').respond(function(){
      var data = {};
      data.authorization = '34f47d42-d8b8-44c1-9a99-bf667d2203ec';
      data.username = 'admin';
      return data;
    });

但它没有正常工作..

0 个答案:

没有答案