marionette-client
Advanced tools
Comparing version 0.15.5 to 0.16.0
@@ -318,3 +318,18 @@ /** | ||
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 = { | ||
type: 'getElementValueOfCssProperty', | ||
propertyName: property | ||
}; | ||
return this._sendCommand(cmd, 'value', callback); | ||
} | ||
}; | ||
@@ -321,0 +336,0 @@ |
{ | ||
"name": "marionette-client", | ||
"version": "0.15.5", | ||
"version": "0.16.0", | ||
"main": "lib/marionette/index", | ||
@@ -5,0 +5,0 @@ "description": "Marionette Javascript Client", |
91490
2993