我的e2e测试在硒网格上运行时遇到了问题。
有时由于Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
尝试以某种方式将defaultTimeoutInterval
更改为protracotr.conf.js
中更高的值,但结果是等待时间更长但错误是相同的。
exports.config = {
chromeOnly: true,
chromeDriver: '../node_modules/.bin/chromedriver',
framework: 'jasmine2',
capabilities: {
'browserName': 'chrome',
shardTestFiles: true,
maxInstances: 3
},
specs: ['../e2e/protractor/spec/*.js'],
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
isVerbose: true,
includeStackTrace: true,
},
我的测试失败的示例规范:
var LoginPage = require(' ../ pages / login_page.js'); var UsersPage = require(' ../ pages / users_page.js'); var WelcomePage = require(' ../ pages / welcome_page.js');
describe('Test -> my test', function () {
var loginPage;
var EC = protractor.ExpectedConditions;
var waitTimeout = 30000;
function logIn() {
loginPage.setUser('user');
loginPage.setPassword('password');
loginPage.login();
}
var clickOn = function (element) {
browser.wait(EC.visibilityOf(element), waitTimeout).then(function () {
element.click();
});
};
beforeEach(function () {
browser.ignoreSynchronization = true;
loginPage = new LoginPage();
browser.wait(EC.presenceOf(loginPage.userLogin), waitTimeout);
logIn();
var welcomePage = new WelcomePage;
clickOn(welcomePage.usersButton);
});
afterEach(function () {
var welcomePage = new WelcomePage();
welcomePage.loginButton.click();
welcomePage.logoutButton.click();
});
it('verifies counter on active tab', function () {
var usersPage = new UsersPage();
browser.wait(EC.visibilityOf(usersPage.firstRow), waitTimeout);
usersPage.rowsCount.count().then(function (count) {
expect(usersPage.activeTab.getText()).toContain('Active' + ' (' + count + ')');
});
});
有谁可以提供任何合理的解决方案如何处理/避免它并解释为什么会发生?
答案 0 :(得分:6)
我建议在it
块中设置一个回调函数,以确保在此之前执行所有异步代码。例如:
it('verifies counter on active tab', function (done) {
var usersPage = new UsersPage();
browser.wait(EC.visibilityOf(usersPage.firstRow), waitTimeout);
usersPage.rowsCount.count()
.then(function (count) {
var text = usersPage.activeTab.getText();
expect(text).toContain('Active' + ' (' + count + ')');
done();
});
});
答案 1 :(得分:2)
实际上,如果您退回承诺,这会更好。 当您在测试中进行异步工作时,您正在摆脱代码的顺序期望。 基本上,您的代码块将被执行,并结束它的调用,但是不会引用仍在后台执行的promise。 有了它,量角器不能等待它完成(但它知道它需要等待)所以测试失败。 而不是手动执行done(),只需添加
return usersPage.rowsCount.count().then(function (count) {
expect(usersPage.activeTab.getText()).toContain('Active' + ' (' + count + ')');
});
答案 2 :(得分:-2)
在使用量角器进行端到端测试时,我遇到了相同的问题,但是我尝试更改protractor.conf.js,它对我有用。
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 180000,
print: function() {}
},
如果我们增加defaultTimeOutInterval大于完成测试用例执行所需的时间,则此方法可能有效