Ruby 的 HTML 解析器可以执行 JavaScript 来查看生成的 DOM 吗?
当尝试 Hpricot 和 Nokogiri 时,可以获取和解析 HTML,但它们也可以执行 Javascript 以便内容显示在页面上吗? (显示在 DOM 中)。这是因为除非 JavaScript 初始化代码运行,否则某些页面不会显示信息。
When trying Hpricot and Nokogiri, the HTML can be fetched and parsed, but can they also execute the Javascript as well so that the content shows on the page? (shows up in the the DOM). That's because some page won't show the info unless the JavaScript initialization code has run.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我所知没有。您可能想考虑使用 Watir 之类的东西并使用真正的浏览器。
Not that I know of. You might want to look into using something like Watir and use a real browser.
看看 envjs 和
Take a look at envjs and johnson gems.
看看 水豚。我自己没有使用过它,但前几天我读到过它,它似乎可以在不使用浏览器的情况下执行 javascript。
Have a look at Capybara. I haven't used it myself but I read about it the other day and it seems like it can execute javascript without using a browser.