I have a MVC project inside VS 2015. I would like to run phantomjs.exe, which is saved in bin directory. This same code works fine inside windows application. It doesn't work inside MVC app (as said, my MVC app runs inside IIS express). Nothing happens, no exception, nothing. If I try to call methods on driver, they are not working. And also, console window is not showing when phantomjs.exe is being called. I've granted permissions to 'Everyone' - full control on that .exe.
PhantomJSOptions options = new PhantomJSOptions();
PhantomJSDriver driver = new PhantomJSDriver(options); //at that point, console window should open, but nothing happens
Does anyone has experience of running executables from MVC application?