Chris86 Posted March 17, 2008 Posted March 17, 2008 How can i login into www.tribalwars.no with this? #include <IE.au3> ; Create a browser window and navigate to hotmail $oIE = _IECreate ("www.tribalwars.no") ; get pointers to the login form and username, password and signin fields $o_form = _IEFormGetObjByName ($oIE, "f1") $o_login = _IEFormElementGetObjByName ($o_form, "user") $o_password = _IEFormElementGetObjByName ($o_form, "password") $o_signin = _IEFormElementGetObjByName ($o_form, "submit") $username = "mylogin" $password = "mypassword" ; Set field values and submit the form _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEAction ($o_signin, "submit") I dont know how to select the server :S
FreeFry Posted March 17, 2008 Posted March 17, 2008 By changing $o_form = _IEFormGetObjByName ($oIE, "f1")
Chris86 Posted March 22, 2008 Author Posted March 22, 2008 By changing $o_form = _IEFormGetObjByName ($oIE, "f1")But i dont know how to select what server :S plz help
Chris86 Posted March 23, 2008 Author Posted March 23, 2008 There will be 2 server to choose about, But forget it;) i would edit the script whene that time comes..
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