JayFran Posted August 13, 2010 Posted August 13, 2010 Hey guys, today I am working on part of my script that logs into the server site and updates the call pool. However, i tried to use the _IE properties such as the getobjectbyid, getobjectbyname, forms, set elements but none seem to work on this site. I thought it might have been been b ut I coded gmail logon script using _IE properties and it worked perfectly. Furthermore, if I use the send send functions it will work, but It would be easier to use their ids and such later on in the logging process because it would be very tedious counting how many times i would have to use tab and the arrow buttons. Any help is greatly appreciated like always. Thanks. #include <ie.au3> $user = InputBox("Login", "Enter Username:") ;$pass = InputBox("Password", "Enter Password:", "", "*") ;Opens IE then navigates to site $oIE = _IECreate("https://129.39.231.133/maximo/ui/login", "Start Center - Windows Internet Explorer") _IELoadWait($oIE) $o_form = _IEGetObjById("https://129.39.231.133/maximo/ui/login", "loginform") $o_username = _IEGetObjById($o_form, "j_username") ;this is the id i got from developer tools ;$o_password = _IEGetObjById($o_form, "j_password") ControlClick($o_username) _IEFormElementSetValue($user, "j_username") ;_IEFormElementSetValue($o_password, $pass) ;_IEAction($changes, "click") ;ControlClick("https://129.39.231.133/maximo/ui/login", "Changes", "mx127_0") ;send($user) ;_IELoadWait ($oIE)
PsaltyDS Posted August 16, 2010 Posted August 16, 2010 Did you look at the _IEGetObjByID() and _IEFormElementSetValue() functions in the help file? Try the example scripts under them? What should the first parameter be? (Hint: Not what you have here.) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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