Cypress - 如何在 Cypress 中进行轮询?

Cypress - How to do polling in Cypress?

在网络应用中,特定元素只有在页面重新加载后才可见,并且在一段时间后也可用,所以目前我是这样实现的:

it('element-check', () => {
    cy.visit('url')
// performing certain actions 
    cy.wait(150000)
    cy.reload()
    cy.contains('text').click()
})

而不是固定等待 cy.wait(150000),我需要以这样一种方式使用轮询机制,即每隔 30 秒重新加载页面并检查所需的元素,直到该元素可见.

您可以使用递归函数来实现。

it('element-check', () => {
  cy.visit('url')

  let retry = 0
  function isElementVisible() {
    
    if (retry < 5 && Cypress.$('selector').length == 0) {

      //Increment retry
      retry++

      //wait 30 seconds
      cy.wait(30000)

      //Reload Page
      cy.reload()

      //Element is not yet visible, Call the recursive function again
      cy.then(isElementVisible)

    } else if (retry < 5 && Cypress.$('selector').length == 1) {
      cy.get('selector').click()
      return

    } else {
      //It excedded required no. of execution
      return
    }
  }
  //Trigger the recursive function
  cy.then(isElementVisible)
})