I don't know much about Javascript but I though the .click command was the way to simulate a click on an item, let's say with something like
document.getElementById('id').click
I recently found a webpage where the buttons .click command did not triggered anything though my actual real clicks do.
I dug a bit and found that there are no event on the onclick of those buttons though they seem to have some eventlistener attached.
Hence I am looking to the proper command out of my Chrome console to trigger the event without actually clicking. Anyone can help on this?
Regards