describe('my homepage',function() { var ptor = protractor.getInstance(); beforeEach(function(){ // ptor.ignoreSynchronization = true; ptor.get('http://localhost/myApp/home.html'); // ptor.sleep(5000); }) describe('login',function(){ var email = element.all(protractor.By.id('email')),pass = ptor.findElement(protractor.By.id('password')),loginBtn = ptor.findElement(protractor.By.css('#login button')) ; it('should input and login',function(){ // email.then(function(obj){ // console.log('email',obj) // }) email.sendKeys('josephine@hotmail.com'); pass.sendKeys('shakalakabam'); loginBtn.click(); }) }) });
上面的代码返回
Error: Error while waiting for Protractor to sync with the page: {}
我不知道为什么这样,ptor正确加载页面,它似乎是选择的失败的元素。
到SSHMSH:
谢谢,你几乎是对的,给了我正确的哲学,所以关键是ptor.sleep(3000)让每个页面等待,直到ptor与项目同步。