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.
-
You can not access properties of tabs in chrome process. You have to do it from chrome API. look at these links: developer.chrome.com/docs/devtools/resources stackoverflow.com/questions/42120468/…Reza Akraminejad– Reza Akraminejad2021-08-19 21:07:56 +00:00Commented Aug 19, 2021 at 21:07
-
You might be interested in a command line switch to tell Chrome to log to a file. Your program could just read from the file.John Wu– John Wu2021-08-19 22:59:47 +00:00Commented Aug 19, 2021 at 22:59
Add a comment
|