James Posted February 21, 2008 Posted February 21, 2008 Hi, Trying to make a auto login for a friend: deviantART but there is no name for the form. How do I manage to set the text box to his username and password? Thanks, James Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
DaleHohm Posted February 21, 2008 Posted February 21, 2008 Hi,Trying to make a auto login for a friend: deviantART but there is no name for the form. How do I manage to set the text box to his username and password?Thanks,JamesFrom the Remarks for _IEFormGetObjByName:RemarksIf the desired form does not have a name or ID, _IEFormGetCollection to get a reference by indexDale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
James Posted February 21, 2008 Author Posted February 21, 2008 Ah right, missed that! Thanks Dale! Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
James Posted February 22, 2008 Author Posted February 22, 2008 So I have been trying and because my luck stinks I haven't got anywhere.I want to fill in the username and password form at, http://www.deviantart.com/users/login.phpI tried loads of things! Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
ReFran Posted February 22, 2008 Posted February 22, 2008 DevianName = Input name=Username (like in 75% of comparable pagea) Password = Input name= password (like in 92,3 % of comparable pages) No Frames, so simple _IEFormGetObjByName should work. HTH, Reinhard
ReFran Posted February 22, 2008 Posted February 22, 2008 Oh, Forgot the example. Reinhard #include <IE.au3> $oIE = _IECreate ("http://www.deviantart.com/users/login.php") ;;;;;;;;;;;;;;;;; On Page;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; $oDiv = _IEGetObjByName($oIE, "username") _IEFormElementSetValue ($oDiv, "Test") $oDiv = _IEGetObjByName($oIE, "password") _IEFormElementSetValue ($oDiv, "12345") _IELinkClickByText ($oIE, "login")
ReFran Posted February 23, 2008 Posted February 23, 2008 By the way, ... I sign my posts with "Reinhard" so I can find later on all the usefull answers I got and state shortly back if it works. br, Reinhard
James Posted February 23, 2008 Author Posted February 23, 2008 OK, thanks ReFran! I was wandering if you know how to resize the IE control if the GUI has been resized. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
ReFran Posted February 23, 2008 Posted February 23, 2008 OK, thanks ReFran!I was wandering if you know how to resize the IE control if the GUI has been resized.Have alook at this: http://www.autoitscript.com/forum/index.ph...amp;hl=ReinhardHTH, Reinhard
James Posted February 23, 2008 Author Posted February 23, 2008 Thanks again. So simple yet so difficult Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
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