I would like to "press" a button on a webpage using a python script. When I say "press", I mean I would like to initiate all of the actions that would occur if you were to press the button with a mouse. Here is the html code for the button:
Any help would be greatly appreciated.
Code:
<input type="button"
name="ctl00$MainPlaceHolder$submitOrder"
value="Submit Order >>"
onclick="this.disabled = true; this.value = 'Submitting Order...';__doPostBack('ctl00$MainPlaceHolder$submitOrder','')"
id="ctl00_MainPlaceHolder_submitOrder"
style="width:150px;font: bold 12px arial" />
Comment