Hi, I am trying to submit a form using this code. #include <IE.au3> Local $oIE = _IECreate("http://www.somewebsite.com") ; Local $oForm1 = _IEFormGetCollection($oIE, 3) Local $oQuery1 = _IEFormElementGetCollection($oForm1, 5) _IEFormElementSetValue($oQuery1,155) Local $oSubmit = _IEGetObjByName($oQuery1, "botao") _IEAction($oSubmit, "click") Seems straight forward, i am using IEaction because of the javascript as stated in the manuals and online help, somehow af