新手到量角器和Javascript所以对我很轻松。在使用我的expect子句之前,有人能告诉我一个额外行的语法来调用函数中的下一个页面对象(在我的测试规范中)吗?
页面对象中的方法/功能:
this.getHeaderText = function(){
element.all(by.css('.ag-header-cell-text'))
.map(function(header){
return header.getText()
}).then(function(headers){
if (headers.toEqual(['Publisher Name', 'IpAddress', 'AddedDate', 'Delete Ip']));
return 1;
});
};
调用期望的测试规范:
it('All headers are present', function(){
// Need syntax here for reference to pass PO function into a value to call below
expect(publisher_whitelist_page.getHeaderText.getText().toEqual(1));
});
});
结果我收到以下错误 - 失败:publisher_whitelist_page.getHeaderText.getText不是函数
再一次,非常感谢和欢迎任何帮助或建议!
谢谢!
科斯蒂
答案 0 :(得分:0)
您的页面对象功能存在一些问题。
this.getHeaderText = function(){
return element.all(by.css('.ag-header-cell-text'))
.map(function(header){
return header.getText()
}).then(function(headers){
if (headers.toEqual(['Publisher Name', 'IpAddress', 'AddedDate', 'Delete Ip']));
return 1;
});
};
你不必再次调用.getText()。
试试这样。
expect(publisher_whitelist_page.getHeaderText()).toEqual(1);
如果你还没有,请告诉我。
首先使用console.log来检查页面对象中标题的值是什么。比如这个 的修改
this.getHeaderText = function(){
return element.all(by.css('.ag-header-cell-text'))
.map(function(header){
return header.getText()
}).then(function(headers){
console.log('data', headers, typeof headers);
});
};
更新2
this.getHeaderText = function(){
return element.all(by.css('.ag-header-cell-text'))
.map(function(header){
return header.getText()
}).then(function(headers){
if(JSON.stringify(headers)==['Publisher Name', 'IpAddress', 'AddedDate', 'Delete Ip'])
return 1;
});
};
评论我你得到了什么
答案 1 :(得分:0)
使用以下代码段修改您的代码。
pageObject.js文件:
this.getHeaderText = function(){
return element.all(by.css('.ag-header-cell-text')).getText();
}
spec.js文件:
it('All headers are present', function(){
expect(publisher_whitelist_page.getHeaderText()).toEqual(['Publisher Name', 'IpAddress', 'AddedDate', 'Delete Ip']);
});