使用 Selenium 清除浏览器缓存
我一直在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我没有足够的声誉来评论 jacksparrow007 的答案,但在 Ruby Selenium 中,他的建议可以编码为:
I don't have enough reputation to comment on jacksparrow007's answer, but in Ruby Selenium, his suggestion could be coded as:
希望这有帮助!
Hope this helps!
我认为你可以通过制作自定义的 Firefox 配置文件然后告诉你的驱动程序使用它来做到这一点。检查此。
I think you can do this by making a custom firefox profile and then telling your driver to use that. check this out.