Jump to content

Yahoo Login


Kogmedia
 Share

Recommended Posts

;Yahoo Login Script 26/05/07
;===========================
;Author:  KogMedia          http://www.autoitscript.com/forum/index.php?showuser=22894

#include <IE.au3>
$USERNAME = 'username'
$PASSWORD = 'password'
$oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?&.src=ym",0,1,1)
$oForm = _IEFormGetCollection ($oIE, 0)
$oLogin = _IEFormElementGetObjByName($oForm, "login")
$oPass = _IEFormElementGetObjByName($oForm,"passwd")
_IEFormElementGetObjByName($oLogin,"login")
_IEFormElementGetObjByName($oPass,"passwd")
_IEFormElementSetValue($oLogin,$USERNAME)
_IEFormElementSetValue($oPass,$PASSWORD)
_IEFormSubmit($oForm)

;WinWaitActive("Security Alert", "&Yes")
;ControlClick ("Security Alert", "You are about to leave a secure Internet connection", 1)

;WinWaitActive("Yahoo! Mail Beta, EMAIL_ACOUNT_USERNAME - Microsoft Internet Explorer")

[font="Verdana"]Keith (Kogmedia)[/font]My ScriptQuick Search - Internet / Hard Drive Search
Link to comment
Share on other sites

  • 5 months later...

;Yahoo Login Script 26/05/07
;===========================
;Author:  KogMedia          http://www.autoitscript.com/forum/index.php?showuser=22894

#include <IE.au3>
$USERNAME = 'username'
$PASSWORD = 'password'
$oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?&.src=ym",0,1,1)
$oForm = _IEFormGetCollection ($oIE, 0)
$oLogin = _IEFormElementGetObjByName($oForm, "login")
$oPass = _IEFormElementGetObjByName($oForm,"passwd")
_IEFormElementGetObjByName($oLogin,"login")
_IEFormElementGetObjByName($oPass,"passwd")
_IEFormElementSetValue($oLogin,$USERNAME)
_IEFormElementSetValue($oPass,$PASSWORD)
_IEFormSubmit($oForm)

;WinWaitActive("Security Alert", "&Yes")
;ControlClick ("Security Alert", "You are about to leave a secure Internet connection", 1)

;WinWaitActive("Yahoo! Mail Beta, EMAIL_ACOUNT_USERNAME - Microsoft Internet Explorer")
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...