我正在开发一个抽认卡应用程序,其中每个抽认卡都有一个“术语”和一个“定义”。每个表单字段都可以通过“term-{index value}”或“definition={index value}”的“data-testid”访问我一直试图执行的代码看起来像这样:let i = 0let randomNumber = Math.floor(Math.random() * 20))while (i < randomNumber) { // Run Cypress code using "i" variable value}目前,Cypress 不会运行该代码。我相信我的问题与 Cypress 的异步性质和上述代码的同步性质有关。有人知道我如何才能让这样的代码工作吗?
1 回答
小唯快跑啊
TA贡献1863条经验 获得超2个赞
您可以使用each()迭代类似数组的结构(具有长度属性的数组或对象)。就像是:
cy.get('data-testid').each(($el, index, $list) => {
//$el is the unique element
//index starts with 0 and with each iteration its value increases by 1
//$list contains the number of unique elements
})
添加回答
举报
0/150
提交
取消