describe('Protractor Login checing ', function() {
it('should add one and two', function() {
browser.get('http://localhost:4041/login');
element(by.model('username')).sendKeys('admin');
element(by.model('password')).sendKeys('admin');
element(by.id('login')).click();
// Here, What should I check whether authentication has been done or not..
// expect().toEqual('');
});
});
实际上,在我的应用程序中,一旦逻辑成功,我将在snackBar(角度材质)中显示一条成功消息,并重定向到仪表板页面。
// Angular 6 application
this.snackBar.open(res.message, '', {
duration: 6000,
});
这里,我应该如何检查量角器?