Preface: I don't think this is an OpenWPM bug, but I'm wondering if anybody has suggestions on how to work around it.
Platform: OpenWPM v0.28, Selenium 4.21.0, Geckodriver 0.34.0.
When the extension is added to a deployed Firefox instance in deploy_firefox.py, line 161, a copy of the XPI file is made in /tmp, presumably by either Selenium or geckodriver. The problem is that it is not deleted.
That's a problem, since when I was crawling a large number of sites, I ended up with enough copies of the XPI file in /tmp that it filled up.
As I said, I don't think this is the fault of OpenWPM. My understanding is that Selenium's WebDriver.quit() is supposed to delete temporary files. It does appear to delete profile directories, just not XPI files.
Has anyone else seen this? And if so, any suggested workarounds?
Preface: I don't think this is an OpenWPM bug, but I'm wondering if anybody has suggestions on how to work around it.
Platform: OpenWPM v0.28, Selenium 4.21.0, Geckodriver 0.34.0.
When the extension is added to a deployed Firefox instance in
deploy_firefox.py, line 161, a copy of the XPI file is made in/tmp, presumably by either Selenium orgeckodriver. The problem is that it is not deleted.That's a problem, since when I was crawling a large number of sites, I ended up with enough copies of the XPI file in
/tmpthat it filled up.As I said, I don't think this is the fault of OpenWPM. My understanding is that Selenium's
WebDriver.quit()is supposed to delete temporary files. It does appear to delete profile directories, just not XPI files.Has anyone else seen this? And if so, any suggested workarounds?