如何从Java中HtmlUnit提供的无头浏览器中删除cookie?
我正在使用 HtmlUnit 无头浏览器访问网站。
当我使用无头浏览器时,这些网站发送的 cookie 可以存储在我的计算机上吗?
如果是,那么这些 cookie 保存的位置是什么?如何通过 HtmlUnit 将其删除?
I am using HtmlUnit headless browser to access websites.
Can the cookies sent by those websites store on my computer when I use that headless browser?
If yes, then what's the location where these cookies get saved and how can I remove it through HtmlUnit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 <强>HtmlUnit.removeCookie()。通常,HtmlUnit 中的 Cookie 是在内存中创建的,而不是序列化到磁盘。
Use HtmlUnit.removeCookie(). Typically the Cookies in HtmlUnit are created in memory and not serialized to disk.
我正在使用
I'm using