Skip to content

Instantly share code, notes, and snippets.

@alanning
alanning / webdriverjs-helpers.js
Last active January 25, 2018 10:18
WebDriverJS Helper functions
var flow = webdriver.promise.controlFlow();
var finish = function (done) {
driver.quit().then(function () {
done();
});
};
var error = function (e) {
driver.quit().then(function () {