我正在尝试编写一些端到端测试,并希望使用async和await。
配置文件
exports.config = {
framework: 'jasmine',
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['spec.js'],
SELENIUM_PROMISE_MANAGER: false,
getPageTimeout: 10000,
multiCapabilities: [
{
browserName: 'firefox'
}, {
browserName: 'chrome'
}
]
}
规格文件
describe('home-view', function(){
beforeEach(async function(){
await browser.get('http://localhost:49335/index.html#!/home');
});
it('sorted by firstname', async function(){
await element(by.css("[ng-click=\"sortData('firstname')\"]")).click();
var firstname = element.all(by.repeater('a in emps')).all(by.css('td'));
expect(await firstname.get(0).getText()).toEqual('abraham');
});
})
错误 等待量角器与页面同步时发生错误:“ angularJS可测试性和角度可测试性均未定义。这可能是因为这是一个非角度页面,或者是因为您的测试涉及客户端导航,这可能会干扰量角器的自举。 “
为什么会出现此错误?谢谢
答案 0 :(得分:2)
您收到此错误,因为默认情况下已加载量角器等待角度页面。如果使用非角度,则应在await browser.waitForAngularEnabled(false);
块中添加onPrepare
:
onPrepare: async () => {
...
await browser.waitForAngularEnabled(false);
...
这种“等待”机制如何运作?我将从代码中复制描述:
/**
* If set to false, Protractor will not wait for Angular $http and $timeout
* tasks to complete before interacting with the browser. This can cause
* flaky tests, but should be used if, for instance, your app continuously
* polls an API with $timeout.
*
因此,如您所见,所有内容都与$http
和$timeout
任务有关。开发人员经常以不正确的方式使用它。
最后,如果您看到这样的错误:
both angularJS testability and angular testability are undefined
您必须添加await browser.waitForAngularEnabled(false);
。
答案 1 :(得分:0)
使getPageTimeOut超过20秒。在browser.get方法之后使用显式等待,例如browser.sleep(2000)。发生该错误的原因可能是由于网页响应缓慢,因此也请使用dirctConnect而不是seleniumAddress。
答案 2 :(得分:0)
更早我需要在我的script.js中添加它 browser.driver.ignoreSynchronization = true;
但是添加这个解决了我的问题。 browser.waitForAngularEnabled(false);
所以最终的script.js总共是
describe('My first non angular class', function() {
it('My function', function() {
browser.driver.ignoreSynchronization = true;
browser.waitForAngularEnabled(false);
browser.driver.manage().window().maximize();
//browser.get('http://juliemr.github.io/protractor-demo/');
browser.driver.get('https://stackoverflow.com/users/login');
element(by.id('email')).sendKeys('6');
})
})