I am new to protractor. I am getting the following error while trying to run Selenium tests using protractor
I/hosted - Using the selenium server at http://local
It seems like selenium server is not running on http://127.0.0.1:4444/wd/hub
. Before running your protractor test,you must start the selenium server using below command.webdriver-manager start
. After starting the server your tests will execute without any errors.
If you dont want to start selenium server manually,then just remove seleniumAddress:http://localhost:4444/wd/hub
property from your conf.js.