/onbeforeunload-example

Cypress test for a site that uses onbeforeunload and a confirmation prompt

Primary LanguageJavaScript

onbeforeunload-example

cypress version ci status badges status renovate-app badge

Cypress test for a site that uses onbeforeunload and a confirmation prompt

Read window.onbeforeunload and Cypress

Links

Original Cypress issue #2118

Install and use

Debugger protocol

In DevTools console you can execute the following code, but I did not see it cleanly remove all event listeners

getEventListeners(window).beforeunload
  .forEach(({ type, listener, useCapture }) => {
    console.log('removing', type, listener, useCapture)
    window.removeEventListener(type, listener, useCapture)
  })

Source