APud Posted March 6, 2014 Posted March 6, 2014 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?
FireFox Posted March 6, 2014 Posted March 6, 2014 Hi, Welcome to the autoit forum Please use autoit code tags to post your code. Br, FireFox.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now