A way to stall automatic popups that vanish after a while to inspect them #109
Open
Description
I just got this as a question in my talk at Goto Copenhagen. When you have an information popup that vanishes after a while in a page and you want to inspect that, there is no way to do so at the moment.
I thought starting a debugging session would do the trick as it halts the main JS thread, but as window.timeout is async, the debugging session does not stop this functionality from executing.
If people use CSS animations with delay it would not work either. Which brings us to another feature of pausing animations.
I suppose one way would be to find the code that shows and hides the popup and set a breakpoint, or to use overrides to copy the script locally and remove the code that hides the overlay. But all of this is too complex.
AB#41735877