I am trying to get the list of all available JS events (like keypress, keyup, click, touchstart, scroll..)
My goal is to record ALL interactions an user have done in a webpage and play it back. (like filling forms, button clicks, scrolls)
is it possible to list all these events (and subscribe to all these events) in JS ?
maybe something similar was already done ? (I could find just some keys or mouse recording, but not ALL events)