Trying to read a webpage using HttpClient. But some of the html is hidden by some js magic, try hitting view source on this page http://uc.worldoftanks.eu/uc/accounts/#wot&at_search=a
Any idea how to get HttpClient to return the “full” html page?
Trying to read a webpage using HttpClient. But some of the html is hidden
Share
HttpClientdoes not process javascript, which means there is no content that can be hidden when reading the http content from the server.It’s probably the other way round, the javascript that runs on the page likely creates new html elements and appends them to the DOM… which is not something you can handle using
HttpClient,HttpClientis a communication client designed purely to read data accross a HTTP connection.