With latest chromedriver.exe running into out of disk space issues as chromedriver is not deleting the folder named scoped_* at the end of the execution. It is occupying almost 20 GB of space for 400 tests. I tried with both 2.28 and 2.29 versions of chromedriver. I am exiting the driver properly with driver.close() and driver.Quit() too. Chrome browser version is 57.

解决方案

I managed this by adding deletion of temp folders that begins with "scoped_dir" after quitting driver like:

public static void teardown_()

{

// quit driver

if (driver != null)

driver.Quit();

// delete all "scoped_dir" temp folders

string tempfolder = System.IO.Path.GetTempPath();

string[] tempfiles = Directory.GetDirectories(tempfolder, "scoped_dir*", SearchOption.AllDirectories);

foreach (string tempfile in tempfiles)

{

try

{

System.IO.DirectoryInfo directory = new System.IO.DirectoryInfo(tempfolder);

foreach (System.IO.DirectoryInfo subDirectory in directory.GetDirectories()) subDirectory.Delete(true);

}

catch (Exception ex)

{

writeEx("File '" + tempfile + "' could not be deleted:\r\n" +

"Exception: " + ex.Message + ".");

}

}

}

Hope it helps!

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐