Cypress error

CypressError: cy.click() failed because the center of this element is hidden from view

Another element (a sticky header, modal, or overlay) is sitting on top of the click target's center point.

Why this happens

How to fix it

  1. Dismiss or close the covering element before clicking
  2. Scroll the target to a position that isn't covered: `cy.get(sel).scrollIntoView()`
  3. Avoid `{ force: true }` unless the overlap is a deliberate, harmless visual layer