-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chrome driver error on first run #262
Comments
Downloading from http://chromedriver.storage.googleapis.com/index.html fixed the issue, but the docs should cover that. |
I had the same problem. I solved it this way for running pioneer.js from gulp and also not having to install the chromedriver globally (so I don't need extra setup on my CI server):
My gulpfile.js looks like this: var gulp = require('gulp');
var shell = require('gulp-shell');
require('npm-path').setSync();
gulp.task('test', shell.task('./node_modules/.bin/pioneer')); Maybe that is a good addition to the docs, too. EDIT: |
Yeah this issue boils down to the fact that you need chromedriver in your path for everything to work (with chromedriver). I do not think a plain ol install of pioneer should do this however perhaps we should expose a thoughts? |
Just a warning in the installation steps would have been enough for me... |
I did some research and got smarter. ;) We are trying to solve an issue that selenium-webdriver does not intend to solve. In their installation instructions they say:
Protractor solves this issue by installing a self-developed 'webdriver-manager'. Since it is available as a standalone module you could install it with pioneer.js, too. |
@sprugman I agree, a short line in the installation steps would help for now. I guess nearly everyone stumbles over it. |
yeah ok great call guys, I will add this to the next release marker :) Thanks so much for the feedback, and if you ever want to chat come join me in the chatroom |
Related #225 |
I've also got this error:
Not sure that's the right solution -- but to make it work I have to download the chrome driver & copy it to /usr/bin. |
scaffolding worked, but then
lead to
The text was updated successfully, but these errors were encountered: