We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WDM extracts browserwatcher.crx to the temp folder. However, the file is not cleaned up. On CI systems, thousands of theses files accumulate.
webdrivermanager/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java
Lines 1799 to 1800 in 5c0031b
The temporary file should be deleted on exit. The easiest way to achieve this, given the JVM terminates gracefully, is with deleteOnExit().
deleteOnExit()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
WDM extracts browserwatcher.crx to the temp folder. However, the file is not cleaned up. On CI systems, thousands of theses files accumulate.
webdrivermanager/src/main/java/io/github/bonigarcia/wdm/WebDriverManager.java
Lines 1799 to 1800 in 5c0031b
The temporary file should be deleted on exit. The easiest way to achieve this, given the JVM terminates gracefully, is with
deleteOnExit()
.The text was updated successfully, but these errors were encountered: