Jump to content

Write Internet Explorer Dom Events in a file


Recommended Posts

Hello,

I need to track on a text file all the Internet Explorer Events (open a js, click a button, every function called, etc.). I'm tryng to use a simple example I found on the forum

 

#include<ie.au3>
$oIE = _IECreate("http://xxxx.xx.xx/xx/?xxx=xxxx")
$oEvt = ObjEvent($oIE,"IEEvent_","DWebBrowserEvents2")

while 1
sleep(10)
wend

Func IEEvent_BeforeNavigate2($notsurewhatthisis,$url,$TargetFrameName,$PostData,$Headers, $Cancel)
;;;;;
consolewrite($url&@CR)
 EndFunc

Very easy, but almost useful. Is a good beginning, but I have a problem, I open the page, and in that there is a login form, I need to get the event in the new page opened (an Iframe in this case). I tried winwait and other, but in the console I see only the event of the Iecreate page (the login and stop).

Any suggestion?

Link to comment
Share on other sites

You are capturing only one event. That is why after the login you don't get any more - I guess no more such events are fired.

The other possible reason is a nasty one -  i dont know why exactly , bit after the login , a java code or something else removed your event listener. And you have to do :

$oEvt = ObjEvent($oIE,"IEEvent_","DWebBrowserEvents2")

again.

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