.getCurrentActivity() 建议编辑
获取当前 Android 活动的名称。
用法
.appium.getCurrentActivity([callback])
示例
module.exports = {
'get current activity name': function (app) {
app
.appium.getCurrentActivity(function (result) {
console.log('current android activity is:', result.value);
});
},
'get current activity name with ES6 async/await': async function (app) {
const activity = await app.appium.getCurrentActivity();
console.log('current android activity is:', activity);
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
回调 可选 |
函数 | 回调函数,使用结果值调用。 |
返回值
类型 | 描述 |
---|---|
字符串 | 当前活动的名称。 |