#include <IE.au3>
$oIE = _IECreate ("wapbox.vten.ru")
_IELinkClickByText ($oIE, "Вход")
$oForms = _IEFormGetCollection ($oIE,0)
$oQuery = _IEFormElementGetCollection ($oForms, 1) ;login
_IEFormElementSetValue ($oQuery, "login")
$oQuery = _IEFormElementGetCollection ($oForms, 2) ;pass
_IEFormElementSetValue ($oQuery, "pass")
_IEFormSubmit($oForms)