Jump to content

Recommended Posts

Posted

I'm new to autoit and am looking for a way to analyse network traffic when following links online.

By this I mean the urls that are displayed in "Developer Tools/Network" on Chrome.

I have the following code to test on www.cnn.com

    $URL    = "www.cnn.com"
    $fd        = FileOpen(@TEMPDir & "url.url",2)
    if $fd = -1 Then Exit
    FileWriteLine($fd,"[internetShortcut]")
    FileWriteLine($fd,"URL=" & $URL)
    FileClose($fd)
    Run(@comspec & " /c " & chr(34) & @TEMPDir & "url.url" & chr(34))
 
    sleep(4000)
 
    MouseClick("left", 167, 167)
 
 
I would now like to append to this code so that it displays the network traffic after the mouse click. Is this possible?

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