Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit f8c606b

Browse files
committed
fix(webdriver-manager): make sure selenium standalone shuts down nicely
This addresses selenium server shutdown in two ways - the node process will stay open until selenium has exited - if the user inputs to STDIN (e.g. press space) selenium will shut down gracefully
1 parent d04f9a9 commit f8c606b

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

bin/webdriver-manager

+17-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var http = require('http');
77
var path = require('path');
88
var AdmZip = require('adm-zip');
99
var optimist = require('optimist');
10+
var childProcess = require('child_process');
1011

1112
/**
1213
* Download the requested binaries to node_modules/protractor/selenium/
@@ -131,7 +132,7 @@ var spawnCommand = function(command, args) {
131132
var winCommand = win32 ? 'cmd' : command;
132133
var finalArgs = win32 ? ['/c'].concat(command, args) : args;
133134

134-
return require('child_process').spawn(winCommand, finalArgs,
135+
return childProcess.spawn(winCommand, finalArgs,
135136
{ stdio: 'inherit' });
136137
};
137138

@@ -207,7 +208,21 @@ switch (argv._[0]) {
207208
args.push('-Dwebdriver.ie.driver=' +
208209
path.join(argv.out_dir, executableName('IEDriverServer')));
209210
}
210-
spawnCommand('java', args);
211+
var seleniumProcess = spawnCommand('java', args);
212+
console.log('seleniumProcess.pid: ' + seleniumProcess.pid);
213+
seleniumProcess.on('exit', function(code) {
214+
console.log('Selenium Standalone has exited with code ' + code);
215+
process.exit(code);
216+
});
217+
process.stdin.resume();
218+
process.stdin.on('data', function(chunk) {
219+
console.log('Attempting to shut down selenium nicely');
220+
http.get('http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer');
221+
222+
});
223+
process.on('SIGINT', function() {
224+
console.log('Staying alive until the Selenium Standalone process exits');
225+
});
211226
break;
212227
case 'status':
213228
for (name in binaries) {

0 commit comments

Comments
 (0)