1.0.0 • Published 8 years ago

gulp-selenium-grid v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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
    }));
});