- Autoit v3
- IE UDF .Thats all.
- Google chorme to easily identify DOM element ID or NAME parameter ,else you can view source in any browser of your choice rather I recommend use of Google chrome
#include$oIE = _IECreate ("http://yoursitename.com") $oForm = _IEFormGetObjByName ($oIE, "form id or name") $oQuery1 = _IEFormElementGetObjByName ($oForm, "uname textfield id or name") $oQuery2 = _IEFormElementGetObjByName ($oForm, "pwd text field id or name") $uname="Yourusername" $pwd="yourpassword" _IEFormElementSetValue ($oQuery1,$uname) _IEFormElementSetValue ($oQuery2,$pwd) $oButton=_IEGetObjById($oIE,"") _IEAction ($oButton, "click") _IELoadWait($oIE,0) The code above opens internet explorer finds the text-fields for username and password further it sets the string using _IEFormElementSetValue() fuction and finally simulates the click on the form button to submit the form