无法从网站检索html
本文关键字:检索 html 网站 | 更新日期: 2023-09-27 18:25:24
我正在我的WebBrowser中加载此页面[可能是NSFW]当WebBrowser.ReadyState准备就绪时,我试图在WebBrowser.Document.DomDocument、WebBrowser.Document.Body.InnerHtml、WebBrowser.Document.Body.OuterHtml中查看,但不是我在WebBrowser中看到的页面。
WebBrowser b = new WebBrowser();
b.Navigate(url);
WaitBrowserLoading(b); //wait browser to complete loading
MessageBox.Show(b.Document.Body.OuterHtml);
MessageBox.Show(b.Document.Body.InnerHtml);
最后两个函数都没有返回我用Chrome分析时可以看到的页面。
有什么建议吗?
正确的结果出现在webBrowser.Document.GetElementsByTagName("HTML")[0]。OuterHtml