Socket
Socket
Sign inDemoInstall

@wdio/protocols

Package Overview
Dependencies
Maintainers
7
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/protocols - npm Package Compare versions

Comparing version 5.18.7 to 5.19.0

4

package.json
{
"name": "@wdio/protocols",
"version": "5.18.7",
"version": "5.19.0",
"description": "Utility package providing information about automation protocols",

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

},
"gitHead": "7bb864ddc391fec9f5ccf3c1bcab1ff18979c0ee"
"gitHead": "269db84d04b74322ef6822ad715534709db3f273"
}

@@ -707,2 +707,15 @@ {

},
"/session/:sessionId/appium/device/network_speed": {
"POST": {
"command": "toggleNetworkSpeed",
"description": "Set network speed (Emulator only)",
"ref": "http://appium.io/docs/en/commands/device/network/network-speed/",
"parameters": [],
"support": {
"android": {
"UiAutomator": "4.2+"
}
}
}
},
"/session/:sessionId/appium/device/open_notifications": {

@@ -1417,3 +1430,39 @@ "POST": {

}
},
"/session/:sessionId/appium/events": {
"POST": {
"command": "getEvents",
"description": "Get events stored in appium server.",
"ref": "https://github.com/appium/appium/blob/master/docs/en/commands/session/events/get-events.md",
"parameters": [{
"name": "type",
"type": "string[]",
"description": "Get events which are filtered with the type if the type is provided.",
"required": true
}],
"returns": {
"type": "object",
"name": "result",
"description": "A JSON hash of events like `{'commands' => [{'cmd' => 123455, ....}], 'startTime' => 1572954894127, }`."
}
}
},
"/session/:sessionId/appium/log_event": {
"POST": {
"command": "logEvent",
"description": "Store a custom event.",
"ref": "https://github.com/appium/appium/blob/master/docs/en/commands/session/events/log-event.md",
"parameters": [{
"name": "vendor",
"type": "string",
"description": "The name of vendor. It will be `vendor` in `vendor:event`.",
"required": true
}, {
"name": "event",
"type": "string",
"description": "The name of event. It will be `event` in `vendor:event`.",
"required": true
}]
}
}
}
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