Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

leadfoot

Package Overview
Dependencies
Maintainers
3
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leadfoot - npm Package Compare versions

Comparing version 1.5.1 to 1.5.2

2

package.json
{
"name": "leadfoot",
"version": "1.5.1",
"version": "1.5.2",
"description": "Leadfoot. A JavaScript client library that brings cross-platform consistency to the Selenium WebDriver API.",

@@ -5,0 +5,0 @@ "repository": {

@@ -313,3 +313,11 @@ /* global document:false */

if (fixSessionCapabilities) {
return self._fillCapabilities(session);
return self._fillCapabilities(session).catch(function (error) {
// The session was started on the server, but we did not resolve the Promise yet. If a failure
// occurs during capabilities filling, we should quit the session on the server too since the
// caller will not be aware that it ever got that far and will have no access to the session to
// quit itself.
return session.quit().finally(function () {
throw error;
});
});
}

@@ -316,0 +324,0 @@ else {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc