I want to automate logging into a website and retrieving certain data. I thought the way to do this would be to sniff the HTTP requests so I know where the login form is being POSTed to so I can do the same using NodeJS/Java/Python.
However I can't seem to find the HTTP request that handles it. The site seems to use some Java-applet and a lot of Javascript.
This is the site: link
Should I have a different approach? Also also wonder about storing a cookie session, and sending it with each HTTP request after logging in.
I'm sorry if I am not to clear, I will try to explain myself further and edit this post if needed.