WPF WebBrowser fails to load rendered HTML of an Angular JS website
问题 I am working on a WPF aplication and I want to get the rendered HTML of a website that uses Angular JS technology. Here is what I've tried: First, I create a WPF Web Browser control: private WebBrowser webBrowser; Then I navigate it to my target web page: var uri = new Uri("http://my-angualrjs-site.com", UriKind.RelativeOrAbsolute); webBrowser.Navigate(uri); In the LoadCompleted event handler of my WebBrowser instance I cast the retrieved document to mshtml.HTMLDocument : var doc = (mshtml