使用 Selenium 清除浏览器缓存

发布于 2024-11-28 09:12:57 字数 148 浏览 1 评论 0原文

我一直在使用 Ruby selenium-webdriver gem 对工作中的 Web 应用程序执行一些测试。一件很棒的事情是能够在执行定时页面加载之前以编程方式清除浏览器缓存等,但我似乎在文档中找不到任何内容。

有谁知道是否有一种简单的方法可以用宝石做到这一点?

I've been using the Ruby selenium-webdriver gem to perform some testing on a web app at work. One thing that would be great would be the ability to programmatically clear the browsers cache before performing timed page loads etc but I can't seem to find anything in the documentation.

Does anyone know if is there a simple way of doing this with the gem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

十六岁半 2024-12-05 09:12:57

我没有足够的声誉来评论 jacksparrow007 的答案,但在 Ruby Selenium 中,他的建议可以编码为:

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.cache.disk.enable'] = false
profile['browser.cache.memory.enable'] = false
profile['browser.cache.offline.enable'] = false
profile['network.http.use-cache'] = false
Selenium::WebDriver.for :firefox, :profile => profile

I don't have enough reputation to comment on jacksparrow007's answer, but in Ruby Selenium, his suggestion could be coded as:

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.cache.disk.enable'] = false
profile['browser.cache.memory.enable'] = false
profile['browser.cache.offline.enable'] = false
profile['network.http.use-cache'] = false
Selenium::WebDriver.for :firefox, :profile => profile
终止放荡 2024-12-05 09:12:57

希望这有帮助!

@driver.manage.delete_all_cookies

Hope this helps!

@driver.manage.delete_all_cookies
ゝ偶尔ゞ 2024-12-05 09:12:57

我认为你可以通过制作自定义的 Firefox 配置文件然后告诉你的驱动程序使用它来做到这一点。检查

I think you can do this by making a custom firefox profile and then telling your driver to use that. check this out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文