.setOrientation() 建议编辑
设置当前设备方向。
用法
.appium.setOrientation(orientation, [callback])
示例
module.exports = {
'set orientation to LANDSCAPE': function (app) {
app
.appium.setOrientation('LANDSCAPE');
},
'set orientation to PORTRAIT with ES6 async/await': async function (app) {
await app.appium.setOrientation('PORTRAIT');
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
方向 |
字符串 | 新的设备方向: |
回调 可选 |
函数 | 命令完成时要调用的可选回调函数。 |