DEV Community

Discussion on: How to inspect the tooltips

Collapse
 
kiransiluveru profile image
kirankumar

Execute below code on console and wait for the 7 sec, as tooltip showing may have delay
setTimeout(()=>{
debugger
},7000)

Collapse
 
lifeixiong profile image
feixiong

This is a very brilliant way, thanks