Chrome Dev Tools: How to trace network for a link that opens a new tab? -


i want trace network activity happens when click on link. problem link opens new tab, , apparently dev tools works per tab open for. "preserve log upon navigation" not help.

my current solution move firefox , httpfox not have issue. wonder how developers chrome manage, sounds pretty basic (of course i've searched answer, didn't find helpful).

check out chrome://net-internals/#events detailed overview of network events happening in browser.


other possible solution, depending on specific problem, may enable 'preserve log' on 'network' tab:

devtools > network > preserve log

and force links open in same tab executing following code in console:

[].foreach.call(document.queryselectorall('a'),     function(link){         if(link.attributes.target) {             link.attributes.target.value = '_self';         }     });  window.open = function(url) {     location.href = url; }; 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -