#include <IE.au3>
$oIE = _IECreate("http://47.52.60.144:2017/")
$aGet = $oIE.document.GetElementsByTagName("input")
For $i = 0 To $aGet.length
If $aGet($i).name = "queryID" Then $aGet($i).value = "8888"
If $aGet($i).name = "submit" Then $aGet($i).click()
Next