Ensure Selenium binaries are installed before use.
This commit is contained in:
parent
5dbb0a284a
commit
52e35063f4
8
index.js
8
index.js
|
@ -74,8 +74,14 @@ app.use(proxy('localhost', {
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
selenium.start({ spawnOptions: {}}, function() {
|
selenium.install({ logger: function(msg) { console.log(msg); }}, function(err) {
|
||||||
|
selenium.start({ spawnOptions: {}}, function(err) {
|
||||||
|
if (err) {
|
||||||
|
console.log(err);
|
||||||
|
} else {
|
||||||
console.log("Persistent selenium listening on port 4443");
|
console.log("Persistent selenium listening on port 4443");
|
||||||
app.listen(4443);
|
app.listen(4443);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue