禁用Chrome驱动程序以记录.org.chromium.Chromium文件

时间:2019-02-11 02:01:02

标签: selenium google-chrome

我正在使用硒对chrome进行e2e测试。
但是,每次测试后都会生成.org.chromium.Chromium。*文件。
最终耗尽磁盘空间。
这是我的代码

const driver = await new Builder()
   .forBrowser("chrome")
   .setChromeOptions(
     new chrome.Options()
       .addArguments("incognito", "--lang=en", "headless", "--silent")
   )
   .build();

.org.chromium.Chromium。*似乎是铬的缓存文件。
有办法禁用它吗?

0 个答案:

没有答案