我添加了 Microsoft.mshtml 作为对我的项目的引用,并走到了这一步:
mshtml.IHTMLDocument2 document = (mshtml.IHTMLDocument2)webbrowser.Document;
string username = document.all["username"].GetAttribute("value");
但第二行不起作用。它说
“错误 CS0021:无法将带有 [] 的索引应用于‘mshtml.IHTMLElementCollection’类型的表达式”
当悬停在“全部”上时。我如何访问所有元素?