cambium Posted April 6, 2009 Posted April 6, 2009 (edited) heya sorry for another disturbing autologin problem.This login seems to be different than normal logins.http://llamarr.mybrute.comi don't get it to work.There is a field on the upper left "Type here"Sourcecode says it is a form <form method="post" action="/go"> , sadly no name or id , well no problem because its the only<form> on whole page.#include <IE.au3> $oIE = _IECreate ("http://llamarr.mybrute.com/") $oForm = _IEFormGetCollection ($oIE); @extend returns 1 , of course .. there is only 1 form $oText = _IEFormElementGetObjByName ($oForm, "name"); this form has 2 elements both input type , one has a name : "name" , i guess the textfield _IEFormElementSetValue ($oText, "lalalatest")well doesn't seem to work , any suggestions is welcome Edit : tried with _ieAction("focus/click") that didn't worked either Edited April 6, 2009 by cambium
rajeshontheweb Posted April 6, 2009 Posted April 6, 2009 might look primitive, but this is what i had to use when there was no access available to input objects $hIE = _IEPropertyGet($oIE, "hwnd") sleep(500) _IEAction($oIE,"focus") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{TAB}") ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "lalalalatest") sleep(500) ControlSend($hIE, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{ENTER}") Started late is much better than having never started it!!!!Failure is another step towards success. I've been messing around with: Adding Entry to 'Hosts'File Information Lister (Logger)Yet Another AutoIT Error Handler Yet Another AutoIT Error Handler & Debugger Control your App's TaskBar Button YCurrency Ticker (Latest Release : 16 Apr 2009)_WinInetInternetCheckConnection UDF Symantec Definitions Lister UDF _GetLocalIPAddresses UDF UDF to get Special Folder Information WMI_NetworkAdapterConfiguration2Array WMI_CDRomDriveCapabilities _ScriptExists - Check if your au3 script is running!! Uninstaller UDF Get Version for your application (at script level or compiled stage) Uninstaller Pro - faster alternative to windows application removal applet
cambium Posted April 6, 2009 Author Posted April 6, 2009 ah ok , nice thx for help perhaps this will get me further
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