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

marionette-client

Package Overview
Dependencies
Maintainers
6
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

marionette-client - npm Package Compare versions

Comparing version 1.0.0-alpha.1 to 1.0.0

19

lib/marionette/element.js

@@ -326,3 +326,20 @@ /**

return this._sendCommand(cmd, 'value', callback);
}
},
/**
* Returns the value of the specified CSS property name.
*
* @method cssProperty
* @param {Function} callback [Error err, String value]
* @return {Object} self.
*/
cssProperty: function cssProperty(property, callback) {
var cmd = {
name: 'getElementValueOfCssProperty',
parameters: {
propertyName: property
}
};
return this._sendCommand(cmd, 'value', callback);
}
};

@@ -329,0 +346,0 @@

2

package.json
{
"name": "marionette-client",
"version": "1.0.0-alpha.1",
"version": "1.0.0",
"main": "lib/marionette/index",

@@ -5,0 +5,0 @@ "description": "Marionette Javascript Client",

@@ -9,3 +9,8 @@ # Marionette JS Client

- [Api Docs](http://mozilla-b2g.github.com/marionette_js_client/api-docs/)
-
## Note on gecko compatibility!
1.0x is for gecko 26 and onward 0.x is for gecko 25 and lower.
## Hacking

@@ -25,21 +30,6 @@

Node:
``` sh
make test-node
make test
```
Browser:
``` sh
make package
make test-server
# GOTO: http://localhost:8789/test-agent/index.html in your browser
make test-browser
# you can also use
# "make test" to run both node and browser tests.
```
### Plugins

@@ -46,0 +36,0 @@

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