How can I inspect an element which disappears when my mouse moves away?
setTimeout(()=>{debugger;},5000);Now you have 5 seconds to make your element appears. Once it appeared, wait until the debugger hits. As long as you don't resume, you can play with your element and it won't disappear.
Useful tip to avoid repeating those steps above every time:
add this as a bookmarklet:
javascript:(function(){setTimeout(()=>{debugger;},5000);})();Next time you wish to use this, just click/tap this bookmark.