.hideKeyboard() Suggest edits
Hide soft keyboard.
Usage
.appium.hideKeyboard([callback])
Example
module.exports = {
'hide device soft keyboard': function (app) {
app
.appium.hideKeyboard();
},
'hide device soft keyboard with ES6 async/await': async function (app) {
await app.appium.hideKeyboard();
}
};
Parameters
Name | Type | description |
---|---|---|
callback Optional |
function | Optional callback function to be called when the command finishes. |