在角度项目中运行我的测试后,我有一个奇怪的错误错误:等待量角器与页面同步时出错:“窗口无法找到角度”.我的量角器配置如下所示:
require('coffee-script').register(); exports.config = { seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.39.0.jar',seleniumAddress: 'http://localhost:4444/wd/hub',capabilities: { browserName: 'chrome' //'chromeOptions': { // 'args': ['--disable-extensions'] //} },specs: [ '*_spec.coffee' ],allScriptsTimeout: 10000000000,baseUrl: 'http://localhost:9003/',jasmineNodeOpts: { isVerbose: false,showColors: true,includeStackTrace: true,defaultTimeoutInterval: 10000000000 } };
并测试:
loginPage = require './pages/log_in_page' describe 'Log In',-> it 'shows after login',-> loginPage() .setEmail('test@dispatch.me') .setPass('a46s75d4as765d4a6s7d54as76d5as74das76d5')
module.exports = -> @email = element By.css '.test-i-login' @password = element By.css '.test-i-password' @setEmail = (name) => @email.sendKeys(name) this @setPass = (number) => @password.sendKeys(number) this this
在github上有一些类似的问题,但是我没有找到适合我的解决方案. Thx用于回答.
在Protractor配置中更改框架选项为’jasmine2’为我解决了这个问题.
详见this thread.