webdriverjs
Advanced tools
Comparing version 0.7.2 to 0.7.3
@@ -26,10 +26,17 @@ /** | ||
process.on('uncaughtException', function (exception) { | ||
function errorCB() { | ||
self.next(); | ||
}); | ||
} | ||
process.on('uncaughtexception', errorCB); | ||
// call the callback | ||
method.call(scope, err, result); | ||
// call the next item | ||
self.next(); | ||
// remove the listener to avoid memoryleakes. but do it after self.next so we know everything went well | ||
process.removeListener('uncaughtexception', errorCB); | ||
}; | ||
@@ -157,2 +164,2 @@ }; | ||
}; | ||
}; | ||
}; |
{ | ||
"name": "webdriverjs", | ||
"description": "A nodejs bindings implementation for selenium 2.0/webdriver", | ||
"version": "0.7.2", | ||
"homepage": "https://github.com/Camme/webdriverjs", | ||
"version": "0.7.3", | ||
"homepage": "https://github.com/camme/webdriverjs", | ||
"author": "camilo tapia <camilo.tapia@gmail.com>", | ||
@@ -13,6 +13,6 @@ "contributors": [ | ||
"type": "git", | ||
"url": "git://github.com/Camme/webdriverjs.git" | ||
"url": "git://github.com/camme/webdriverjs.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Camme/webdriverjs/issues" | ||
"url": "https://github.com/camme/webdriverjs/issues" | ||
}, | ||
@@ -22,3 +22,3 @@ "licenses": [ | ||
"type": "MIT", | ||
"url": "https://github.com/Camme/webdriverjs/blob/master/LICENSE-MIT" | ||
"url": "https://github.com/camme/webdriverjs/blob/master/LICENSE-MIT" | ||
} | ||
@@ -25,0 +25,0 @@ ], |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34393194
2199