CasperJS is not working well on AngularJS
问题 If in casper, I only click on one button, then everything works fine. The following code passes the test. casper.then(function() { this.click('#loginB'); this.fill('#loginEmailField', { 'loginEmail': 'a@a.com', }, false); this.fill('#loginPasswordField', { 'loginPassword': 'a', }, false); this.click('#loginClickButton'); this.click('#logoutB'); test.assertNotVisible('#logoutB', "logout item should not show"); test.assertNotVisible('#loggedInItem', "loggedin item should not show"); test