diff --git a/lib/devices/android/chromedriver.js b/lib/devices/android/chromedriver.js index be389ccf3..8061f166f 100644 --- a/lib/devices/android/chromedriver.js +++ b/lib/devices/android/chromedriver.js @@ -238,9 +238,9 @@ Chromedriver.prototype.deleteSession = function (cb) { }; Chromedriver.prototype.stop = function (cb) { - logger.debug('Killing chromedriver'); + logger.debug('Killing chromedriver and waiting for close'); this.exitCb = cb; - this.proc.kill(); + this.proc.kill('SIGINT'); }; Chromedriver.prototype.proxyTo = proxyTo;