I want to write program which will open connection on a page, example "https://en.wikipedia.org" and will get all requested URLs which is initiated by "https://en.wikipedia.org" page to load content from server.
I mean, when you open chrome development tools -> network, you can see all network requests initiated by the current page to load content from server, can I get this requests in my java or C# program? and how?
I looked some utils like "jsoap", but it seems that they all works only for source code parsing.