release Selenium chromedriver.exe from memory
per the Selenium API, you really should call browser.quit() as this method will close all windows and kills the process. You should still use browser.quit(). However: At my workplace, we’ve noticed a huge problem when trying to execute chromedriver tests in the Java platform, where the chromedriver.exe actually still exists even after using browser.quit(). To … Read more