.setContext() 建议编辑
设置要自动化的上下文。用于使用 Appium 测试混合移动应用程序。
更多信息请访问:https://appium.node.org.cn/docs/en/commands/context/set-context/
用法
.appium.setContext(context, [callback])
示例
module.exports = {
'switch to webview context': async function (app) {
app
.waitUntil(async function() {
// wait for webview context to be available
// initially, this.getContexts() only returns ['NATIVE_APP']
const contexts = await this.appium.getContexts();
return contexts.length > 1;
})
.perform(async function() {
// switch to webview context
const contexts = await this.appium.getContexts(); // contexts: ['NATIVE_APP', 'WEBVIEW_<id>']
await this.appium.setContext(contexts[1]);
});
},
'switch to native context': function (app) {
app.appium.setContext('NATIVE_APP');
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
context |
字符串 | 要切换到的上下文名称 - 表示可用上下文的字符串。 |
回调 可选 |
函数 | 命令完成后要调用的可选回调函数。 |