← Back to library
Cypresswaitbeginnerv10+
Wait for element to disappear
Assert that a loading spinner or toast notification leaves the DOM.
1it('spinner disappears once data loads', () => {
2 cy.visit('/dashboard');
3
4 cy.get('[data-testid="spinner"]').should('exist');
5
6 // Cypress retries until the element is gone
7 cy.get('[data-testid="spinner"]').should('not.exist');
8
9 cy.get('table').should('be.visible');
10});#not.exist#disappear#spinner#loading