I'm trying to make an auto-login script for betfair.com.
In the code below I've read and printed out the id of each form element - this helped me find the username and password fields.
#include<IE.au3>
$oIE = _IECreate("http://www.betfair.com/exchange")
$oForms = _IEFormGetCollection($oIE)
$fo...