I am instantiating PhantomJSDriver in C# using the following code:
Driver = new PhantomJSDriver();
And I am cleaning it up with the below code:
Driver.Dispose();
Driver = null;
I want to understand that "Should this process exit or stay in memory?"
If it is supposed to stay in memory, can I kill it programmatically?