Jump to content

using autoIt within IEFRAME class items


Recommended Posts

Thanks alot! :-)

I finally did it.

This is my script (you're welcome to use it):

----

#include <IE.au3>

$oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?&.src=ym")

$oForm = _IEFormGetCollection ($oIE, 0)

$oQuery = _IEFormElementGetCollection ($oForm, 1)

send ("EMAIL_ACCOUT_USERNAME")

send ("{TAB}")

send ("EMAIL_ACCOUNT_PASSWORD")

send ("{ENTER}")

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")

----

Thanks again,

DavidD

Link to comment
Share on other sites

This is how you use the _IEForms

#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)
[font="Verdana"]Keith (Kogmedia)[/font]My ScriptQuick Search - Internet / Hard Drive Search
Link to comment
Share on other sites

  • 8 years later...

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...