How do I prevent Chrome developer tools from closing when the current browser window closes?

后端 未结 3 1997
失恋的感觉
失恋的感觉 2020-12-13 11:42

I\'m trying to use the chrome developer tools to debug an issue I\'m having with Twitter oauth.

When the oauth window appears, I open the developer tools to monitor

相关标签:
3条回答
  • 2020-12-13 12:29

    Try using remote debugging: https://developers.google.com/chrome-developer-tools/docs/remote-debugging In this case Developer Tools will be opened in a separate browser tab that won't be closed automatically.

    Also consider setting a breakpoint in the code that closes the window if you can find it.

    0 讨论(0)
  • 2020-12-13 12:31

    Not a perfect solution, but you can add breakpoints on the events Window.close and unload by turning on the checkboxes at:

    Developer tools -> "Sources" tab -> Event Listener Breakpoints -> Window -> close
    

    And

    Event Listener Breakpoints -> Load -> unload
    

    Try to mark both and see which one works best for you

    0 讨论(0)
  • 2020-12-13 12:40

    Another option is to manually add a breakpoint yourself. Open up your closes-too-quickly window, open up JS console, and:

    window.addEventListener('unload', function() { debugger; })
    

    But it all comes down to exactly what the window is doing, and when exactly you want to stop things, so experimenting with Event Listener Breakpoints in the Sources tab, as in @jfhfhf839's answer, is a good idea too.

    In my case (debugging Google OAuth flow), neither Window -> Close nor Load -> Unload did the trick, but Script > Script First Statement was useful, though I had to resume execution a few times before I got to where I wanted.

    0 讨论(0)
提交回复
热议问题