Hi Everyone.
I am a new member to WebmasterWorld so this is officially my first post!
I am attempting to login to a website automatically using login credentials which I have done successfully as here:
<html>
<head>
<title>Auto-Login to www.mysite.com</title>
</head>
<body onLoad="document.frmlogin.submit();">
<form name="frmlogin" id="frmloginid" method="POST"
action="https://www.mysite.com/login.asp" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="username" value="MYUSERNAMEHERE">
<input type="hidden" name="password" value="MYPASSWORDHERE">
</form>
</body>
</html>
Now comes the tricky part I can't figure out - what I need to do is go from this successful login > Auto-Navigate to another page within my Account Area > Then Auto Submit another form. I should note... I am not trying to do anything dodgy here - I just want to automate an action I must take everyday so I dont have to worry about it.
I don't know where to start or even if the above is the correct first step - If anyone can offer any suggestions or solutions that would be fantastic!
Look forward to hearing thoughts.
KeyIndividual.