I'm looking for a JS tracking library that would track my events on websites and then log the actions I did. I'm not talking about mouseclicks etc, I want to log button clicks, forms filling, etc.. I need to log my activity so I can create a JSON spec file to use in my Python project.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (4)
i think you could find some chrome extension that does that. i know there are some that generate script for
webdriver
orpuppeteer
. not sure if there is one that can export a json description. but let me know.That's what I'm exactly trying to do ( a web extension) , I tried looking for libraries that would help me do so, but the one I found where collecting datas ones.
If you need to track yourself you could create an extension, a browser extension.
That would be IMO the best bet. Because for sure most of the sites use trackers but you dont have access over the data they collect.
So using your own tracking extension with your tracker of choice integrated into an extension could work.
That's what I'm exactly trying to do, I tried looking for libraries that would help me do so, but the one I found where collecting datas ones.