<tr>
我在页面对象中多次过滤元素的 ElementArrayFinder 时遇到问题。第二个过滤器在第一个过滤器之后被调用。在下面的代码中,我首先验证一个数字在表格中,然后再次过滤它以单击它。我不只是将这些组合在一起的原因是因为它们在依赖于函数参数batchNumber的函数中,并且可能不同。
筛选:
function verifyBatchInList(batchNumber){
BATCH_LIST_TABLE.filter(function(elem, i){
return elem.element(by.xpath('./td[1]')).getText().then(function(text){
text = text.trim();
return text === batchNumber;
});
}).then(function(results){
if(results.length < 1){
throw new Error('Could not find batch "'+batchNumber+'" in batch list');
}
});
}
function editBatch(batchNumber){
selectBatch(batchNumber);
EDIT_BUTTON.click(); //this never happens
}
function selectBatch(batchNumber){
BATCH_LIST_TABLE.filter(function(elem, i){ //this function never runs
return elem.element(by.xpath('./td[1]')).getText().then(function(text){
text = text.trim();
return batchNumber === text;
});
}).then(function(results){ //this never runs either
if(results.length < 1){
throw new Error('Could not find batch "'+batchNumber+'" in batch list');
}
results[0].click();
});
当我在过滤器函数中放置一个断点时,它只会到达第一次迭代,而不是第二次。运行它的规范看起来像这样。
it('can commit batch', function(){
page.addSpecimens.getBatchId().then(function(text){
batchIds[0] = text.split(' ')[0];
page.addSpecimens.commitBatch();
page = new pages.batchList();
browser.sleep(2000); //for page to load, just temporary
page.verifyBatchInList(batchIds[0]); //this works fine
});
});
it('can edit batch',function(){
page.editBatch(batchIds[0]); //this runs, but never actually filters
});
html 只是一个表格,第一个 td 是批号。