I'm trying to capture the click events,
But for some elements the click event is not firing
Example search box and search button in Bing
I have tried injecting all the below code in Bing
it is capturing all the elements except the input searchbox and search button
But the below code is working perfectly in google, yahoo searchbox and buttons
window.onclick=function(e){console.log(e)};
window.addEventListener("click",function(e){console.log(e)});
document.addEventListener("click",function(e){console.log(e)});
Please tell me why that is not being captured or fired and how to capture that element click