I want to find one or more objects modified after clicking on an element in a web page. This but "reverse engineering" meaning I do not know the objects or the properties.
For example: on a YouTube video when clicking on the mute button the yt.player.utils.videoElement_.muted
is modified from false
to true
.
I want to know if a general technique could be applied independently of the website and the objects.
Edit: I do not want to track only DOM modification as proposed by @Yogi, but I want to track all JS object modification done by an event (which is not necessarily DOM modification).