nguyenan Posted November 4, 2009 Posted November 4, 2009 (edited) i need auto login to these website: http://4down.info/addnews.html http://www.tinydl.com http://hunt4download.com please help me!!! Edited November 4, 2009 by nguyenan
BigDod Posted November 4, 2009 Posted November 4, 2009 Learn to script then write some code. If it does not work then post back here showing what you have tried. No-one is going to write it for you. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Negative1 Posted November 4, 2009 Posted November 4, 2009 go to the autoit help file and then select the index (second tab) then search for: _IE_Introduction This should get you started in the right direction. Once you get some code hashed out if you still have some problems post the code or code snippets and we'll help. What are we going to do tonight Brain?Same thing we do every night Pinky try to automate the world.
Bert Posted November 4, 2009 Posted November 4, 2009 i need auto login to these website: http://4down.info/addnews.html http://www.tinydl.com http://hunt4download.com please help me!!! I need nguyenan to learn AutoIt by taking AutoIt 1 2 3 http://www.autoitscript.com/forum/index.php?showtopic=21048 Please help yourself!!! The Vollatran project My blog: http://www.vollysinterestingshit.com/
nguyenan Posted November 4, 2009 Author Posted November 4, 2009 i readed autoit help file and my scripts: #include <IE.au3> $oIE = _IECreate ("http://4down.info") $o_form = _IEFormGetObjByName ($oIE, "form of site") $o_login = _IEFormElementGetObjByName ($o_form, "login_name") $o_password = _IEFormElementGetObjByName ($o_form, "login_password") $o_signin = _IEFormElementGetObjByName ($o_form, "login") $username = "user" $password = "pass" _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEAction ($o_signin, "click") but i can not see form of this site in source,can you help me?
Bert Posted November 4, 2009 Posted November 4, 2009 (edited) Look at the source code of the site. you can use the web developer plugin for Firefox to ID the fields. Edited November 4, 2009 by Volly The Vollatran project My blog: http://www.vollysinterestingshit.com/
nguyenan Posted November 5, 2009 Author Posted November 5, 2009 i Looked at the source code of the site but i can not see the ID or name
Bert Posted November 5, 2009 Posted November 5, 2009 Did you do what I said? No. Your looking at the source code instead of using the tool I told you to use. Do what I told you to do and you can get the ID. DO NOT look at the source code. Use the tool. It isn't difficult. The Vollatran project My blog: http://www.vollysinterestingshit.com/
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