我遇到错误您的回调函数返回了一个从未解决的Promise,我的代码是cypress 3.4.1版本
```cy.xpath(LOGO).then(async $ele => {
for (const i in $ele) {
if ($ele.eq(i).text() === 'USA') {
$ele.eq(i).click();
cy.wait(5000);
}
const count = await cy.get(COUNT).invoke('text').promisify();
if(count>0) break;
}`enter code here`
});```