I'm running a Selenium Standalone Server, version 2.25.0
I run a program in c# executing the driver by:
DesiredCapabilities capabilities = DesiredCapabilities.HtmlUnit();
capabilities.IsJavaScriptEnabled = false;
IWebDriver driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"), capabilities);
Then I collect some information via driver.FindElement(By.)
.
everything works fine.
After i executed all
I quit the driver by:
driver.Quit();
The test works fine. But when I take a look into the task-manager while executing I can see "java.exe" (the selenium server) grabbing memory and afterwards not releasing it.
How can i solve this problem? Any Ideas?