获取当前设备方向。

用法

                    .appium.getOrientation([callback])
                

示例

module.exports = {
  'get current device orientation': function (app) {
    app
      .appium.getOrientation(function (result) {
        console.log('current device orientation is:', result.value);
      });
  },

  'get current device orientation with ES6 async/await': async function (app) {
    const orientation = await app.appium.getOrientation();
    console.log('current device orientation is:', orientation);
  }
};

参数

名称 类型 描述
callback 函数

使用结果值调用的回调函数。

返回值

类型 描述
字符串

当前设备方向:LANDSCAPEPORTRAIT

另请参阅