I am trying to view, through Chrome\'s developer tools, how tooltips are structured on a site. However, even when I am hovered over the item, when I \"inspect element\", not
Click f12 go to the console tab and add the following:
f12
setTimeout(()=> {debugger},5000)
This will give you 5 seconds to do whatever you want and it will break at 5 seconds. Then you can inspect the target element
5 seconds
(ex. hover the element and wait 5 seconds then inspect..)