错误信息不清楚testcafe

时间:2018-05-29 14:19:03

标签: javascript testcafe

在为网站编写自动化测试时,我在这里得到了以下非常奇怪的错误:代码的重新编排:

  68    let selected
  69    if( params.includes('-RB') ){
  70         let books = Selector('.actions > .link-learn > div').withText('VIEW PRODUCT')
  71         const index = books.count
  72         selected = books.nth( Math.floor(Math.random() * index) );
  73     }

并且testcafe在第72行提出以下投诉。

 "index" argument is expected to be a number, but it was number.

并且在我的程序中没有以名称编号命名的字符串,变量等。那么这个错误意味着什么呢?也许这个错误应该抛出一个更加明确的不同信息。

感谢

1 个答案:

答案 0 :(得分:5)

你在71号线上错过了await。它必须是

const index = await books.count

如果没有await,则会获得Promise包装而不是实际的count属性。在下一行,Promise在NaN表达式中变为Math.random() * index(不是数字)。类型验证失败,因为NaN不是有效数字,但JavaScript NaN属于number类型,在错误消息中报告。这就是为什么错误报告有愚蠢的expected to be a number, but it was number消息。

感谢您的反馈,并帮助我捕获错误,我已经创建了一个问题:https://github.com/DevExpress/testcafe/issues/2470。我想我们会在下一个版本中修复它。