UNPKG

selenium-standalone

Version:

installs a `selenium-standalone` command line to install and start a standalone selenium server

16 lines (14 loc) 290 B
describe('programmatic use', function () { it('should start', function(done) { this.timeout(60000); var selenium = require('../'); selenium.start(function(err, cp) { if (err) { done(err); return; } cp.kill(); done(); }); }); });