Re: Re: PacNet MRTG monitoring
"Julian@home" <[email protected]> Tue, 18 Sep 2007 23:40:41 +0800
| Newsgroups | gmane.comp.windows.autoit.user |
|---|---|
| Message-ID | <[email protected]> |
Thanks for your help again.. It is now working properly.
*********** REPLY SEPARATOR ***********
On 17-09-2007 at 5:58 PM larrydalooza wrote:
#include <IE.au3>
$oIE = _IECreate ("https://ops.pacific.net.sg/owl/main.php")
$oForms = _IEFormGetCollection ($oIE)
For $o_form In $oForms
$o_login = _IEFormElementGetObjByName($o_form, "userid")
$o_password = _IEFormElementGetObjByName($o_form, "password")
$o_submit = _IEFormElementGetObjByName($o_form, "submit")
; Set field values and submit the form
_IEFormElementSetValue($o_login, "My userID")
_IEFormElementSetValue($o_password, "your password here")
_IEAction($o_submit,"click")
ExitLoop
Next
[Non-text portions of this message have been removed]