我试图通过点击链接来更改我的应用程序的状态,但它不起作用。控制台总是说 / home 。
it('should change the route', () => {
expect(browser.getCurrentUrl().toString().endsWith("/home")).toBeTruthy();
element.all(by.css("li")).last().click();
browser.waitForAngular().then(() => {
browser.getCurrentUrl().then(text => {
console.log(text);
});
expect(browser.getCurrentUrl().toString().endsWith("/customer")).toBeTruthy();
});
});
我错过了什么?量角器的文档在状态导航的上下文中没有多大帮助。