.isKeyboardShown() 建议编辑
软键盘是否显示。
用法
.appium.isKeyboardShown([callback])
示例
module.exports = {
'whether keyboard is shown': function (app) {
app
.appium.isKeyboardShown(function (result) {
console.log('result value of whether keyboard is shown:', result.value);
});
},
'whether keyboard is shown with ES6 async/await': async function (app) {
const result = await app.appium.isKeyboardShown();
console.log('result value of whether keyboard is shown:', result);
}
};
参数
名称 | 类型 | 描述 |
---|---|---|
回调 可选 |
函数 | 使用结果值调用的回调函数。 |
返回值
类型 | 描述 |
---|---|
布尔值 | 如果键盘显示,则为 true。 |