I am actually writing a windows script which on clicking will open my default web browser , open a page , enter my login details and then submit the form.
All I could do so far was open the browser with this:
explorer http:\\outlook.com\website.com
Since I could not find any resource which tells how to do this, I looked at python scripting and found two libs ie. urllib and webbrowser. I am know that urllib is used for scraping websites. But I am not sure how to simulate the same in a web browser. The webbrowser library has only commands to open the page in a new tab etc.
Please tell me how I can achieve this task either using python or windows script.
EDIT: I have my username and password saved in my browser so that it auto fills. I just want to simulate the 'ENTER' key press.
