I have a VM with centOS, I try to run selenium server by following the tutorial here. When trying to start the selenium server with webdriver-manager start
I get:
execvp(): No such file or directory seleniumProcess.pid: 22847
events.js:72 throw er; // Unhandled 'error' event ^ Error: spawn ENOENT at errnoException (child_process.js:980:11) at Process.ChildProcess._handle.onexit (child_process.js:771:34)
So I tried the same tutorial with my host (OSX) and running webdriver-manager start
works perfectly. curl 192.168.0.10:4444
from my guest successfully returns the page.
I have two questions.
Why is that so?
Can I have my tests in my VM, the Selenium server on my host and successfully run my tests? I just started with protractor and wonder if I should go further or if it's a dead end.