gulp-wdio
Advanced tools
Weekly downloads
Readme
Same as gulp-webdriver with three key differences:
So you could just simple do –
const wdio = require('gulp-wdio');
gulp.task('e2e', () => {
return gulp.src('path/to/wdio.conf.js').pipe(wdio({
// Omit "type" property if you want start wdio without additional layers
type: 'selenium', // or "browserstack"
wdio: {} // Same arguments as with `wdio --help`
}));
});
Instead of something like this (taken from gulp-webdriver
test script) –
// For local selenium
import gulp from 'gulp'
import selenium from 'selenium-standalone'
import webdriver from '../lib/index'
export default options => {
let errorLog = options.errorHandler('Selenium start')
gulp.task('selenium:start', done => {
selenium.install({
logger (message) {
process.stdout.write(`${message} \n`)
},
progressCb: (totalLength, progressLength) => {
process.stdout.write(`Downloading drivers ${Math.round(progressLength / totalLength * 100)}% \r`)
}
}, err => {
if (err) return done(err)
selenium.start({
spawnOptions: {
stdio: 'ignore'
}
}, (err, child) => {
selenium.child = child
errorLog(err)
done()
})
})
})
gulp.task('test', ['selenium:start'], () => {
return gulp.src(`${options.test}/wdio.*`)
.pipe(webdriver({
logLevel: 'verbose',
waitforTimeout: 12345,
framework: 'mocha',
// only for testing purposes
cucumberOpts: {
require: 'nothing'
}
})).once('end', () => {
selenium.child.kill()
})
})
}
FAQs
gulp plugin for wedriver.io with built-in selenium and browserstack support
The npm package gulp-wdio receives a total of 553 weekly downloads. As such, gulp-wdio popularity was classified as not popular.
We found that gulp-wdio demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.