https://i.stack.imgur.com/AKoH3.png
I want to disable or accept this reload pop up in cypress. Is there any way to do this ?
cy.trigger('keydown', {
key: 'Enter',
});
I also tried to just send enter key but didn't work.
window.onbeforeunload = null;
Cypress.on('window:before:load', (win) => {
Object.defineProperty(win, 'onbeforeunload', {
value: undefined,
writable: false,
})
})
I put this code block in my "beforeEach" also didn't work for me.
I want to disable this pop up.