作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Cypress 命令是异步的,这意味着每个 Cypress 命令立即返回,仅附加到稍后执行的命令队列中。
我有一个函数可以重新加载页面,直到满足某些条件。
下面的代码可以工作,但问题是 cy.get()
总是执行[重试]次,这不好。
您能否向我展示一些如何优化它的见解?
export function waitMoniliphToComplete(retry) {
let numRows = 0
let stopLoop = false
cy.wait(1000)
cy.reload()
for (let i = 0; i < retry; i++) {
if (stopLoop) {
break
}
cy.get('#consignment-list tbody tr').then($rows => {
if ($rows.length == 0 || $rows.length != numRows) {
numRows = $rows.length
cy.wait(1000)
cy.reload()
} else if ($rows.length == numRows) {
stopLoop = true
}
})
}
}
目前cy.get()
由 cypress 排队,无论哪一次迭代 stopLoop 为 true,都会执行 [重试] 次。
我预计cy.get()
一旦满足条件stopLoop就可以跳过。
最佳答案
我怀疑您需要链接重新加载和获取,以确保在计算行数之前重新加载已发生。尝试使用递归...
function reloadAndTest(){
cy.reload().get('...').then(rows => {
if(rows || ++retries === limitRetries)
return true
else return reloadAndTest()
})
};
关于javascript - 如何在 for 循环中跳过 cy.get() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57157573/
我是一名优秀的程序员,十分优秀!