Cypress error

CypressError: Timed out retrying after 4000ms: Expected to find element: `...`, but never found it

The selector is either wrong, or the element renders later than Cypress's default retry window, so check for a pending network request first.

Why this happens

How to fix it

  1. Wait on the underlying request first: `cy.wait('@alias')` before asserting on the element
  2. Raise the timeout locally where it's genuinely justified: `cy.get(selector, { timeout: 10000 })`
  3. For iframes, use the `cypress-iframe` plugin or `cy.origin()` for cross-origin frames