New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

webdriverjs

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webdriverjs - npm Package Compare versions

Comparing version 0.6.0 to 0.6.5

7

lib/webdriverjs.js

@@ -98,2 +98,5 @@ // this is my take on a client for the webdriver

}
if (options && options.username && options.accessKey) {
self._authString = options.username+":"+options.accessKey;
}

@@ -640,2 +643,6 @@ self.protocol = {"direct":{}};

}
if(this._authString){
var buf = new Buffer(this._authString);
fullRequestOptions.headers.Authorization = 'Basic '+ buf.toString('base64');
}

@@ -642,0 +649,0 @@ // we need to set the requests content-length. either from the data that is sent or 0 if nothing is sent

2

package.json

@@ -5,3 +5,3 @@ {

"tags": ["web", "test", "selenium", "browser", "javascript"],
"version": "0.6.0",
"version": "0.6.5",
"author": "camilo tapia <camilo.tapia@gmail.com>",

@@ -8,0 +8,0 @@ "repository":

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