我可以使用 HTMLUnit 访问 HTML5 存储吗

发布于 2025-01-04 02:36:23 字数 219 浏览 2 评论 0原文

我有一个要求,需要确定是否有任何页面正在存储或读取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晨说晚安 2025-01-11 02:36:23

一个简单的测试可能是传递一个 JavaScript 源代码,该源代码执行 setItem('key','value') 存储,然后执行 getItem('key') 并检查结果。如果返回某个脚本对象,则表示成功。像下面这样:

ScriptResult result = currentPage.executeJavaScript("window.localStorage.setItem('some_key','some_value');window.localStorage.getItem('some_key');");
System.out.println("script result: "+result.getJavaScriptResult().toString());

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:

ScriptResult result = currentPage.executeJavaScript("window.localStorage.setItem('some_key','some_value');window.localStorage.getItem('some_key');");
System.out.println("script result: "+result.getJavaScriptResult().toString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文