.setGeolocation() 建议编辑
设置移动设备的当前地理位置。
用法
.appium.setGeolocation({latitude, longitude, altitude}, [callback])
示例
module.exports = {
'set geolocation to Tokyo, Japan': function (app) {
app
.appium.setGeolocation({latitude: 35.689487, longitude: 139.691706, altitude: 5});
},
'set geolocation to Tokyo, Japan with ES6 async/await': async function (app) {
await app.appium.setGeolocation({latitude: 35.689487, longitude: 139.691706});
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
坐标 可选 |
对象 |
|
回调 可选 |
函数 | 可选的回调函数,在命令完成时调用。 |