Jump to content

Recommended Posts

Posted (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 by JLogan3o13
Removed username and password

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...