ahmettben 0 Posted September 25, 2011 #include<IE.au3> Local $mailtxt = "name" Local $passtxt = "pasword" $Mail = $mailtxt $Pass = $passtxt $oIE = _IECreate("http://twitter.com/login", 0, 1, 1) Sleep (2000) $oForm = _IEFormGetObjByName($oIE, "signin-dropdown") $oQuery = _IEFormElementGetObjByName($oForm, "session[username_or_email]") $o_Query = _IEFormElementGetObjByName($oForm, "session[password]") $oSubmit = _IEFormElementGetObjByName($oForm, "submit") _IEFormElementSetValue($oQuery, $Mail) _IEFormElementSetValue($o_Query, $Pass) _IEAction($oSubmit, "click") Share this post Link to post Share on other sites
water 2,387 Posted September 25, 2011 And your problem is? My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
ahmettben 0 Posted September 25, 2011 @water auto login problem Share this post Link to post Share on other sites
Ramzes 1 Posted September 25, 2011 (edited) Please use search option. _IE example: #include <IE.au3> $Url='http://twitter.com/#!/login' $oIE = _IECreate ( $Url ) _IELoadWait($oIE) Sleep ( 1000 ) $oForms = _IEFormGetCollection ( $oIE ) For $oForm In $oForms $_UniqueId = $oForm.uniqueID $oFormElements = _IEFormElementGetCollection ( $oForm ) For $oFormElement In $oFormElements Switch $oFormElement.uniqueID Case 'ms__id29' _IEFormElementSetValue ( $oFormElement, "username" ) Case 'ms__id30' _IEFormElementSetValue ( $oFormElement, "password" ) ;_IEFormSubmit ( $oForm ) EndSwitch Next Next Edited September 25, 2011 by Ramzes Sorry for my bad English but nobody is perfect. [font=arial, helvetica, sans-serif]Ramzes[/font] Share this post Link to post Share on other sites
ahmettben 0 Posted September 25, 2011 @Ramzes the problem still continues Share this post Link to post Share on other sites
water 2,387 Posted September 25, 2011 Could you please be more specific? "auto login problem" doesn't tell us anything! Do you get any error messages when you run your script from SciTe? Your script lacks error checking. Does any of the _IE functions return an error (check @error). My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
ahmettben 0 Posted September 25, 2011 No error auto login problem $oForm = _IEFormGetObjByName($oIE, "signin-dropdown") $oQuery = _IEFormElementGetObjByName($oForm, "session[username_or_email]") $o_Query = _IEFormElementGetObjByName($oForm, "session[password]") $oSubmit = _IEFormElementGetObjByName($oForm, "submit") Case 'ms__id29' _IEFormElementSetValue ( $oFormElement, "username" ) Case 'ms__id30' _IEFormElementSetValue ( $oFormElement, "password" ) ;_IEFormSubmit ( $oForm ) Share this post Link to post Share on other sites
Jos 2,209 Posted September 25, 2011 You are being impatient By bumping this quickly and on top of that is the topic according to the latests version of our forum rules not allowed anymore. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites