gpt4 book ai didi

java - Selenium测试中如何清除浏览器缓存

转载 作者:搜寻专家 更新时间:2023-10-30 21:07:06 25 4
gpt4 key购买 nike

我正在使用 WebDriver 运行我的 Selenium 测试。我正在用一些循环重复测试,所以现在我想在开始新的 JAVA 测试之前清除缓存。

@Test
public void ffAndIe() throws InterruptedException {
int i = 0;
while(i < 5000){

driver.get("http://dit-map.appspot.com/");
Thread.sleep(15000);
driver.get("http://dit- map.appspot.com/#home:zoom=7&lat=37.04&lng=25.05&display=weather");
Thread.sleep(15000);
driver.get("http://dit-map.appspot.com/#home:zoom=9&lat=37.55&lng=23.83&display=weather,wind");
Thread.sleep(10000);
driver.get("http://dit-map.appspot.com/#home:zoom=9&lat=37.84&lng=23.22&display=weather,wind,cloud");
Thread.sleep(10000);
driver.get("http://dit-map.appspot.com/?lang=en#home:zoom=10&lat=38.13&lng=22.59&display=weather,wind,meteogram");
Thread.sleep(10000);
i++;
}
}

在这个 while 循环中,我要做的第一件事是清除缓存(IE、MOZILLA 和 CHROME)

知道我怎样才能做到这一点吗?

谢谢

最佳答案

目前无法通过网络驱动API清除缓存。但是,如果您每次都可以启动一个新的浏览器实例,则应在 FF 中清除缓存。和 Chrome因为每次启动都会创建一个新的配置文件。

issue #40 (Clear cache)的评论如果无法创建新的浏览器实例,请在 Selenium 问题跟踪器中列出两种可能的解决方案:

  1. Clear the IE cache从命令行
  2. Disable the FF cache使用自定义配置文件

HTH

关于java - Selenium测试中如何清除浏览器缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9562327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com