In my C# application I am starting a chrome process with specific URL using System.Diagnostics.Process. So, the chrome window is opened and series of URL's are triggered in chrome. I want to find if there is a way to read all of these requests and response data from network tab of chrome inspect window.
Asked
Active
Viewed 713 times
0
-
You can not access properties of tabs in chrome process. You have to do it from chrome API. look at these links: https://developer.chrome.com/docs/devtools/resources/ https://stackoverflow.com/questions/42120468/control-chrome-programmatically/42120612 – Reza Akraminejad Aug 19 '21 at 21:07
-
You might be interested in a [command line switch to tell Chrome to log to a file](https://www.chromium.org/for-testers/enable-logging). Your program could just read from the file. – John Wu Aug 19 '21 at 22:59