Hello,
I'm a new to Autoit, i like very much the idea of automatization of work. 😀
For my first task I wanted to automate to process to login to my work VPN. Everything is working fine up to the moment of getting the name of the forms from IE,
I've cut out my code, to the error lines - I want to get collection of the forms on that page, but this code itself is giving me an error:
#include <IE.au3>
$oIE = _IECreate("https://aecom.okta.com/signin/")
Sleep(5000)
$oForm = _IEFormGetCollection($oIE)
Error msg: Line 1785
Return SetError($_IESTATUS_Success, 0, $oObject.document)
Return SetError($_IESTATUS_Success, 0, $oObject.^) ERROR
Error: The requested action with this object has failed.
Can someone advise me what I'm doing wrong?