我正在使用Protractor和Astrolabe编写一些页面对象驱动的测试。
Jasmine 被用于实现describe
/it
样式规范。
添加自定义匹配器无法使用this.addMatchers
( TypeError: Object #<Object> has no method 'toContainLowered'
),因此我使用本指南来实现它们。
它似乎正在工作,直到我仔细查看测试运行的输出:
$> grunt test:func
Running "test:func" (test) task
Running "shell:protractor" (shell) task
Using the selenium server at http://localhost:4444/wd/hub
..
Finished in 6.727 seconds
2 tests, 1 assertion, 0 failures
这是我的代码:
var loginPage = require('./../pages/loginPage');
describe('Login page', function () {
var ptor = loginPage.driver;
beforeEach(function () {
jasmine.Matchers.prototype.toContainLowered = function (expected) {
return this.actual.toLowerCase().indexOf(expected) > -1;
};
loginPage.go();
ptor.waitForAngular();
});
it('should display login page', function () {
expect(loginPage.currentUrl).toEqual(ptor.baseUrl);
});
it('should display an error when the username or password is incorrect', function() {
loginPage.login('bad', 'credentials');
ptor.waitForAngular();
expect(loginPage.lblError.getText()).toContainLowered('invalid username and/or password');
// expect(loginPage.lblError.getText()).toContain('Invalid Username and/or Password');
});
});
如果我取消注释最后一行并删除toContainLowered
匹配器,我会得到正确的输出:
2 tests, 2 assertions, 0 failures
我在调试这个基于 Promise 的代码时遇到了非常困难的时间,并且任何努力都console.log(this.actual.toLowerCase().indexOf(expected) > -1);
将打印出来false
,这令人困惑。
我什至尝试用 just 替换整个函数定义return false;
。仍然没有做任何事情。最后,我尝试不向匹配器传递任何参数,它应该抛出一个无效参数错误或其他东西。
使用 Protractor/Astrolabe 测试时,如何在 Jasmine 中定义自己的匹配器?