Jump to content

Recommended Posts

Posted

HI,

How can I use autoIt within IEFRAME class items.

For example I was tring to use autoIt to fill yahoo user&password form (http://www.mail.yahoo.com)

Thanks in advanced.

DavidD

Posted

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

Posted

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
Posted

Thanks it's much better (& faster).

Do you know how can I click on a specific text-link?

Thanks for your help,

DavidD

  • 8 years later...
Posted

Can this be done without the _IECreate but rather already existing window ?

see _IEAttach function

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

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
  • Recently Browsing   0 members

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