My old WinForm application used HtmlElementCollection to process a page
HtmlElementCollection hec = this.webbrowser.Document.GetElementsByTagName("input");
In WPF WebBrowser, there are several things that are different. For example
this.webbrowser.Document does not have any method called GetElementsByTagName
Therefore my code is unable to get an HtmlElementCollection