Check angular ui route state using protractor

纵饮孤独 提交于 2019-12-14 04:25:13

问题


I'm using protractor framework to test my angular application.

Can I check for the angular state in the e2e test?


回答1:


Sure, the idea is to use browser.executeAsyncScript() to:

  • locate the element having the ng-app defined
  • initialize the angular.element and get the injector instance
  • get the $state service
  • use $state.current.name to get the current state's name

Sample working test using the UI router demo page:

describe("Current Angular UI router state", function () {
    beforeEach(function () {
        browser.get("https://angular-ui.github.io/ui-router/sample/#/");
    });

    it("should get the current state", function (){
        var currentStateName = browser.executeAsyncScript(function(callback) {
            var el = document.querySelector("html");  // ng-app is defined on html element in this case
            var injector = angular.element(el).injector();
            var service = injector.get('$state');

            callback(service.current.name);
        });

        expect(currentStateName).toEqual("home");
    });
});

Heavily inspired by this answer.



来源:https://stackoverflow.com/questions/34501054/check-angular-ui-route-state-using-protractor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!