Cypress - Navigation and URL
You want to test that after reloading the page without cache, a specific cookie named 'session_id' is cleared. Which Cypress code snippet correctly achieves this?
cy.reload(true) to force reload without cache, which can clear cookies.getCookie('session_id').should('not.exist') to assert the cookie is cleared.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions