获取当前 Android 包的名称。

用法

                    .appium.getCurrentPackage([callback])
                

示例

module.exports = {
  'get current package name': function (app) {
    app
      .appium.getCurrentPackage(function (result) {
        console.log('current android package is:', result.value);
      });
  },

  'get current package name with ES6 async/await': async function (app) {
    const packageName = await app.appium.getCurrentPackage();
    console.log('current android package is:', packageName);
  }
};

参数

名称 类型 描述
回调
可选
函数

回调函数,在调用时带有结果值。

返回值

类型 描述
字符串

当前包的名称。

另请参阅