我可以使用 HTMLUnit 访问 HTML5 存储吗
我有一个要求,需要确定是否有任何页面正在存储或读取 HTML5 数据存储。我正在使用 HTMLUnit 来抓取网页。我在 sourceforge 列表中检查了对 HTML5 存储的支持已经建立。 HTMLUnit 实际上是否为 localStorage、sessionStorage 等创建对象?如果是,我如何访问它们?
我也想过抓取页面上的所有Javascript并搜索关键字,但是有没有比这更好的方法呢?
I've a requirement where I need to identify if any page is storing or reading from HTML5 data stores. I am using HTMLUnit to scrape through webpages. I checked in the sourceforge listing that the support for HTML5 storages has been built. Does HTMLUnit actually create objects for localStorage, sessionStorage etc? If yes, how can I access them?
I've also thought of scraping all Javascripts on the page and search for the keywords, but is there any better method than that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的测试可能是传递一个 JavaScript 源代码,该源代码执行 setItem('key','value') 存储,然后执行 getItem('key') 并检查结果。如果返回某个脚本对象,则表示成功。像下面这样:
a simple test could be to pass a javascript source code that does the setItem('key','value') storage and then does getItem('key') and inspect the result. If some script object is returned, it means success. something like the following: