bahmutov / onbeforeunload-example

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

Home Page:https://glebbahmutov.com/blog/onbeforeunload/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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

About

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

https://glebbahmutov.com/blog/onbeforeunload/


Languages

Language:JavaScript 97.6%Language:HTML 2.4%