@testim/testim-cli
Version:
Command line interface for running Testing on you CI
36 lines (32 loc) • 1.14 kB
JavaScript
/**
*
* Protocol bindings for all mobile orientation operations.
*
* <example>
:orientation.js
// get the current browser orientation. The server should
// return a valid orientation value as defined in
// screen orientation: {LANDSCAPE|PORTRAIT}
client.orientation(function(err,res) { ... });
// set the browser orientation. The orientation should be
// specified as defined in ScreenOrientation: {LANDSCAPE|PORTRAIT}
client.orientation('landscape');
* </example>
*
* @param {String=} deviceOrientation The new browser orientation as defined in ScreenOrientation: `{LANDSCAPE|PORTRAIT}`
* @returns {String} device orientation (`{LANDSCAPE|PORTRAIT}`)
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/orientation
* @type protocol
*
*/
module.exports = function orientation (deviceOrientation) {
var data = {};
if (typeof deviceOrientation === 'string') {
data.orientation = deviceOrientation.toUpperCase();
}
return this.requestHandler.create(
'/session/:sessionId/orientation',
data
);
};