Hello,
we are trying to automate web browser control through powershell and we are using FiddlerCore to get the time statistics. Basically trying to get the total time taken by a website to finish loading.
We call start-Fiddler to use it as proxy and then create a browser control.
Now we Navigate to page and then call $output = Receive-Fiddler.
Now there seems to be a problem with output returned through this command "Receive-Fiddler". It basically returns an array of requests made and the time statistics [ ClientConnected , ClientDoneResponse ]. often I see the ClientConnected , ClientDoneResponse is coming as Null. Again this is intermittent but can happen atleast 5-6 times in 10 tries. its easily reproducible.
($result[0].Timers.ClientConnected )
has someone reported this behavior? is there an better approach than what we are doing?
thanks for your help
we are trying to automate web browser control through powershell and we are using FiddlerCore to get the time statistics. Basically trying to get the total time taken by a website to finish loading.
We call start-Fiddler to use it as proxy and then create a browser control.
Now we Navigate to page and then call $output = Receive-Fiddler.
Now there seems to be a problem with output returned through this command "Receive-Fiddler". It basically returns an array of requests made and the time statistics [ ClientConnected , ClientDoneResponse ]. often I see the ClientConnected , ClientDoneResponse is coming as Null. Again this is intermittent but can happen atleast 5-6 times in 10 tries. its easily reproducible.
($result[0].Timers.ClientConnected )
has someone reported this behavior? is there an better approach than what we are doing?
thanks for your help