bethakota Posted June 5, 2013 Posted June 5, 2013 (edited) Hi, I'm trying to automate a website login process. Everytime I use _IECreate("https://www.mail.google.com") it returns empty that is not allowing me to find Form other Input ids, Below is sample code : $oIE = _IECreate("https://www.google.com") _IELoadWait($oIE) Local $o_form = _IEFormGetObjByName($oIE,"login") Local $o_username= _IEGetObjByName($oIE,"username") Local $o_password = _IEGetObjByName($o_form,"password") Local $add = _IELinkGetCollection($oIE) MsgBox(4,$o_form,o_password) Help is greatly appreciated. Thanks Edited June 5, 2013 by bethakota
JohnOne Posted June 5, 2013 Posted June 5, 2013 Not allowed to help with login scripts. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
bethakota Posted June 5, 2013 Author Posted June 5, 2013 (edited) What do you mean by not allowed ? forums doent support login scripts help ? Edited June 5, 2013 by bethakota
Moderators Melba23 Posted June 6, 2013 Moderators Posted June 6, 2013 bethakota,Welcome to the AutoIt forum. In future please pay attention to where you post - "Developer Chat" is not for general support questions such as this. I have moved the thread for you. JohnOne,The rules change last November - we will not help with "log-in and security [dialogs" but plain vanilla page log-ins such as this are perfectly acceptable. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
FrikinImpossible Posted June 6, 2013 Posted June 6, 2013 Hello bethakota, I didn't see any forms or login areas on the google.com website that doesn't require a redirect. But, try this: #include <IE.au3> $oIE = _IECreate("mail.google.com") _IELoadWait($oIE) Local $o_form = _IEFormGetCollection($oIE, 0); Local $o_username= _IEFormElementGetObjByName($o_form,"email") Local $o_password = _IEFormElementGetObjByName($o_form,"passwd") _IEFormElementSetValue($o_username, "your_username") _IEFormElementSetValue($o_password, "your_password") _IEFormSubmit($o_form);
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