Thank you in advance! We are using protractor to do e2e testing. At this moment we have following steps for any new person to start running our test
npm install
an npm task to download webdrivers
manually edit the protractor config's node parameter entry to point to correct path of protractor (inside node modules\protractor\bin\protractor)
I am trying to avoid the third step so that everything can be done via either tasks or be there permanent (so no need of a change). So, how can I programmatically set that parameter? or any other better way to handle this situation. It will also help me to attach my tests to the CI builds.
I am using WebStorm at the moment and for no particular reason trying to avoid a grunt or gulp task. However, if that is really needed, can do the same.