You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SeleniumServer.start returns a promise that does not resolve if no option is provided to the start function. See below:
varSeleniumServer=require('selenium-webdriver/remote').SeleniumServer;varpathToSeleniumJar='/workspace/protractor/selenium/selenium-server-standalone-2.48.2.jar';varoptions=undefined;// Uncomment the following and the test will work fine. // var options = {// port: 4444// }varserver=newSeleniumServer(pathToSeleniumJar,options);server.start().then(function(url){console.log('Never reached');});