I have multiple URLs to execute. I am currently using below method
I am creatving a vbs file with below content
Option Explicit
Dim objIEA
Set objIEA = CreateObject("InternetExplorer.Application")
objIEA.Navigate "http://www.xyz=<variable1>&abc=<variablea>"
objIEA.Navigate "http://www.xyz=<variable2>&abc=<variableb>"
objIEA.Navigate "http://www.xyz=<variable3>&abc=<variablec>"
objIEA.visible = false
While objIEA.Busy
Wend
sleep 15
objIEA.Quit
Set objIEA = Nothing
Here I have pasted all the URLs with all the variables & saved this file as xyz.vbs
I am executing this vbs file through batch file using below mentioned code cscript.exe abc.VBS
The only issue is I am not able to capture the logs of the URL execution. With each URL execution, there would be a response in text which I want to capture
Pls suggest