gulp-selenium-grid
v1.0.0
Published
gulp-selenium-grid is a gulp plugin to run selenium grid tests
Downloads
4
Maintainers
Readme
gulp-selenium-grid
gulp-selenium-grid is a gulp plugin to run selenium-grid tests
Install
npm install --save-dev gulp-selenium-grid
Usage
You can run Selenium-grid with:
gulp.task('test', function() {
return gulp.src('./tests/**/*.js').pipe(seleniumGrid());
});
If you just want to run all tests under a folder:
gulp.task('test', function() {
return gulp.src('tests').pipe(seleniumGrid({
recursive: true
}));
});