I am trying to determine where a link with "javascript:void(0)" is sending me. I will make this question quite broad since maybe the solution is outside of my imagination: I am trying to log-in via python into a website. I have done this before on a different website so the general routine is clear. To log-in to this specific website I need 3 keys. 2 of those keys are generated once you press the let's call it "to-login" button and are handed over in the get-request.
I do not understand how I can get those 2 keys, because I can't "follow" the javascript:void(0) in order to get the keys, can I?
I am more used to hidden input keys.
<div class="header-sidebar-quicklinks">
<a href="javascript:void(0)" class="header-sidebar-quicklink header-sidebar-quicklink-login">
<!---->
<span>Login</span>
</a>
</div>
This is some example code.
The main objective therefore is to get those 2 keys which are generated before entering the login page.