I'm using protractor framework to test my angular application.
Can I check for the angular state in the e2e test?
alecxe
Sure, the idea is to use browser.executeAsyncScript() to:
- locate the element having the
ng-appdefined - initialize the
angular.elementand get theinjectorinstance - get the
$stateservice - use
$state.current.nameto 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