我正在使用量角器,在执行过程中,我注意到在函数内部未执行Promise。谁能帮我吗?
Then('I want to see three accordion items with the related links', function () {
var accordion = element.all(by.css('.accordion.element'));
browser.driver.wait(accordion.count().then(function(agg){
browser.pause('il numero da verificare porca di quella : ', agg);
console.log('il numero è:', agg); //NON VIENE STAMPATO IL LOG
//expect(number).to.equal(3);
}));
});