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

webdriver

Package Overview
Dependencies
Maintainers
1
Versions
513
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webdriver - npm Package Compare versions

Comparing version

to
5.4.0

8

build/monad.js

@@ -17,4 +17,8 @@ "use strict";

const SCOPE_TYPES = {
'browser': function Browser() {},
'element': function Element() {}
'browser':
/* istanbul ignore next */
function Browser() {},
'element':
/* istanbul ignore next */
function Element() {}
};

@@ -21,0 +25,0 @@

@@ -90,3 +90,3 @@ "use strict";

requestOptions.uri = _url.default.parse(`${options.protocol}://` + `${options.hostname}:${options.port}` + _path.default.join(`${options.path}${this.endpoint.replace(':sessionId', sessionId)}`));
requestOptions.uri = _url.default.parse(`${options.protocol}://` + `${options.hostname}:${options.port}` + _path.default.join(options.path, this.endpoint.replace(':sessionId', sessionId)));
/**

@@ -93,0 +93,0 @@ * send authentication credentials only when creating new session

{
"name": "webdriver",
"version": "5.3.5",
"version": "5.4.0",
"description": "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",

@@ -38,3 +38,3 @@ "author": "Christian Bromann <christian@saucelabs.com>",

},
"gitHead": "3a1da1e4dc31e38616b6416f86ae3c75e13fc0e7"
"gitHead": "c3380136145b53be9cf9f68c469c9f5bec4723a6"
}

@@ -669,3 +669,3 @@ {

"support": {
"android": {
"ios": {
"XCUITest": "9.3+"

@@ -688,3 +688,3 @@ }

"support": {
"android": {
"ios": {
"XCUITest": "9.3+"

@@ -979,3 +979,3 @@ }

},
"/session/:sessionId/appium/device/gsm_voice": {
"/session/:sessionId/appium/device/send_sms": {
"POST": {

@@ -982,0 +982,0 @@ "command": "sendSms",

@@ -166,2 +166,20 @@ {

},
"/session/:sessionId/window/new": {
"GET": {
"command": "createWindow",
"description": "Create a new top-level browsing context.",
"ref": "https://w3c.github.io/webdriver/#new-window",
"parameters": [{
"name": "type",
"type": "string",
"description": "Set to 'tab' if the newly created window shares an OS-level window with the current browsing context, or 'window' otherwise.",
"required": true
}],
"returns": {
"type": "Object",
"name": "window",
"description": "New window object containing 'handle' with the value of the handle and 'type' with the value of the created window type"
}
}
},
"/session/:sessionId/window/handles": {

@@ -168,0 +186,0 @@ "GET": {

@@ -261,2 +261,3 @@ // Type definitions for WebDriver v5

switchToWindow(handle: string): undefined;
createWindow(type: string): object;
getWindowHandles(): string[];

@@ -353,2 +354,3 @@ switchToFrame(id: (number|string|object|null)): undefined;

gsmSignal(signalStrengh: string): undefined;
gsmVoice(state: string): undefined;
sendSms(phoneNumber: string, message: string): undefined;

@@ -355,0 +357,0 @@ fingerPrint(fingerprintId: number): undefined;