Jump to content

Recommended Posts

Posted

Hi programmers,

I am new to auto It programming, need your help on the problem below.

My program need to click on link and update some value on popup windows.

I tried use _IEAction.au3 example file, but this code is opening new windows,

how to get link from IE/ Mozilla which is already open and log on (since I need to key in is & password).

#include <ie.au3>

$oIE = _IECreate("http://204.183.109.150/home.php", 0, 1)

_IELoadWait($oIE)

_IELinkClickByText ($oIE, "Add Trend")

Thanks.

Posted

how to get link from IE/ Mozilla which is already open and log on (since I need to key in is & password).

I think you are looking for _IEAttach function:

#include <IE.au3>
$oIE = _IEAttach ("204.183.109.150","URL")
_IELinkClickByText ($oIE, "Add Trend")

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