使用Cypress-promise异步等待对我不起作用

时间:2019-11-13 08:03:02

标签: cypress

我遇到错误您的回调函数返回了一个从未解决的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`
});```

0 个答案:

没有答案