Cypress - Navigation and URL
How can you instruct Cypress to reload the page and bypass the browser cache?
cy.reload() command accepts a boolean argument to control cache usage.true argumenttrue forces the browser to reload the page without using the cache.{ cache: false } or string arguments are not valid for cy.reload().cy.reload(true) to force reload without cache. -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions