我想使用量角器测试我的角度应用程序.因为我使用RequireJS,我不能在我的DOM中使用ng-app指令,这就是为什么我用angular.bootstrap手动引导Angular.
Error: Angular could not be found on the page
http://localhost:1428/
: retries looking for angular exceeded
然后,我意识到量角器文档有一个警告:
Protractor does not work out-of-the-Box with apps that bootstrap manually using angular.bootstrap. You must use the ng-app directive.
那么,手动启动角度应用程序是否有任何解决方法来运行量角器测试,还是应该开始了解替代测试套件?
去量角器配合并加上这个
原文链接:https://www.f2er.com/angularjs/142947.htmlonPrepare: function() { // implicit and page load timeouts browser.manage().timeouts().pageLoadTimeout(40000); browser.manage().timeouts().implicitlyWait(25000); // for non-angular page browser.ignoreSynchronization = true; // sign in before all tests }
它为我工作
我的完整配置文件看起来像这样…
// conf.js exports.config = { seleniumAddress: 'http://localhost:4444/wd/hub',specs: ['../**/*.e2e.js'],multiCapabilities: [{ browserName: 'firefox' }],onPrepare: function() { // implicit and page load timeouts browser.manage().timeouts().pageLoadTimeout(40000); browser.manage().timeouts().implicitlyWait(25000); // for non-angular page browser.ignoreSynchronization = true; // sign in before all tests } }
实际发生的是,您从量角器询问等待一段时间,并忽略document.ready(),以便您有时间手动引导角度.