naru Posted February 25, 2018 Posted February 25, 2018 #include <IE.au3> $oIE=_IECreate("https://acc.rollernet.us") $oObj = _IEGetObjByName($oIE,"username") _IEPropertySet($oObj,"innertext","MyUserId") $oObj = _IEGetObjByName($oIE,"password") _IEPropertySet($oObj,"innertext","MyPassword") $oObj = _IEGetObjByName($oIE,"submit") _IEAction($oObj,"click") Exit i want to do the same but without open the "https://acc.rollernet.us" (the webpage is already opened and i want to fill the username and pass in the form direclty)
Subz Posted February 25, 2018 Posted February 25, 2018 Change $oIE=_IECreate("https://acc.rollernet.us") To $oIE=_IECreate("https://acc.rollernet.us", 1)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now