html 敏捷包
我正在尝试检索某个响应,我有请求并将其加载到 html 文档中,这是代码:
HtmlWeb hw = new HtmlWeb(); HtmlDocument doc = hw.Load("某个 URL");
问题是,在我的浏览器中访问 url 并使用上面的表单解析相同的 url 时,我检索到几乎相同的页面,但缺少一些内容。这可能是由于检索值所需的时间(可能),我该怎么做才能确保检索与浏览器中相同的结果!这是最紧迫、最重要的! 请帮助我!
i am trying to retrieve a certain response, i have the request and im loading it into the html document this is the code:
HtmlWeb hw = new HtmlWeb();
HtmlDocument doc = hw.Load("Some URL");
the problem is that upon accessing the url in my browser and parsing the same url using the form above, im retrieving almost the same page, but some content is missing. this might be due to the time needed to retrieve the values(POSSIBLY), what can i do inorder to make sure i retrieve the same results as in the browser! this is top urgent and vital!
Please ASSIST ME!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 HAP 解析的源与浏览器中的源进行比较。
Compare the source HAP-parsed source with the source in your browser.