如何在每次测试运行前清除浏览器缓存?在创建驱动程序实例后,我在driver.manage().deleteAllCookies();
方法中尝试使用setUp
,它适用于firefox,但对于IE没用。有没有IE的解决方案请提供给我..
答案 0 :(得分:12)
您可以按如下方式设置驱动程序功能:
DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();
capabilities.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
它在IE11上对我有用。
来源: http://selenium.googlecode.com/git/docs/api/java/org/openqa/selenium/ie/InternetExplorerDriver.html
答案 1 :(得分:3)
使用以下代码清除IE中的缓存
try {
Runtime.getRuntime().exec("RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255");
} catch (IOException e) {
e.printStackTrace();
}
答案 2 :(得分:1)
使用这篇文章How To: Execute command line in C#, get STD OUT results,我想出了这个用于删除cookie的C#代码(并且作为副作用删除了所有IE浏览器数据)。
public static void DeleteIECookiesAndData()
{
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "RunDll32.exe";
p.StartInfo.Arguments = "InetCpl.cpl,ClearMyTracksByProcess 2";
p.Start();
p.StandardOutput.ReadToEnd();
p.WaitForExit();
}
它根本不漂亮,但它有效。也许可以删除一些碎片。 (如果您找到更好的方法,请告诉我。)
答案 3 :(得分:1)
IE浏览器会在每次加载页面后清除每个元素的缓存
ieCapabilities.setCapability(InternetExplorerDriver.ENABLE_ELEMENT_CACHE_CLEANUP, true);
这将进行会话清理:
ieCapabilities.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
答案 4 :(得分:0)
使用java可以实现:
protected void deleteCookie(String cookieName) {
String cookieDomain = CTPropertiesManager.getProperty("site.properties", "site.cookie.domain");
try {
//get all cookies
Cookie cookies[] = request.getCookies();
Cookie ctCookie=null;
if (cookies !=null) {
for(int i=0; i<cookies.length; i++) {
ctCookie=cookies[i];
if (ctCookie.getName().trim().equals(cookieName)) {
if ( cookieDomain != null ) {
ctCookie.setDomain(cookieDomain);
}
ctCookie.setPath("/ct");
ctCookie.setMaxAge(0);
response.addCookie(ctCookie);
}
} //end for
}//end if cookie
} catch(Exception e) {
CTLogManager.log(e);
}
}//end deleteCookie()
用于删除缓存 您可以创建一个bat文件,在测试开始之前清除浏览器或应用程序缓存。创建bat文件后,只需在测试开始前调用代码。