Fink89 Posted July 24, 2018 Posted July 24, 2018 (edited) I search forum and have code #include <IE.au3> Local $oIE = _IECreate("live.com") _IELoadWait ($oIE) _IELinkClickByText($oIE, "Sign in") $o_form = _IEFormGetObjByName ($oIE, "f1") $o_login = _IEFormElementGetObjByName ($o_form, "loginfmt") $o_password = _IEFormElementGetObjByName ($o_form, "passwd") $o_signin = _IEFormElementGetObjByName ($o_form, "idSIButton9") $username = "username" $password = "password" _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEAction ($o_signin, "click") Run code , It click button "Next", don't click button "Sign in" with ID "idSIButton9". Help me fix it. Thanks Edited July 25, 2018 by JLogan3o13 Removed username and password
AutoBert Posted July 25, 2018 Posted July 25, 2018 I hope for you username and password are fake, if not i suggest to change before someone else capture your mailaccount. Fink89 1
Moderators JLogan3o13 Posted July 25, 2018 Moderators Posted July 25, 2018 @Fink89 not the smartest thing putting your username in password in a thread for all to see. I have removed them for you this time. Fink89 1 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Fink89 Posted July 25, 2018 Author Posted July 25, 2018 Oh, I forgot to delete it. Although the account don't important.
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