获取 Appium 运行的当前上下文。在使用 Appium 测试混合移动应用程序时使用。

更多信息请参见:https://appium.node.org.cn/docs/en/commands/context/get-context/

用法

                    .appium.getContext([callback])
                

示例

module.exports = {
  'get current context': function (app) {
    app
      .appium.getContext(function (result) {
        console.log('the current context is:', result.value);
      });
  },

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

参数

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

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

返回

类型 描述
string | null

表示当前上下文的字符串,或 `null` 表示“无上下文”。

另请参见