/** * * Hide the keyboard. * * :hideKeyboard.js it('should hide keyboard by tapping outside of it', function () { browser.hideDeviceKeyboard(); // taps outside to hide keyboard per default browser.hideDeviceKeyboard('tapOutside'); }); it('should hide keyboard by pressing done', function () { browser.hideDeviceKeyboard('pressKey', 'Done'); }); * * * @param {String} strategy desired strategy to close keyboard ('tapOutside' or 'pressKey') * * @see https://github.com/appium/appium/blob/master/docs/en/appium-bindings.md#hide-keyboard-ios-only * @type mobile * @for ios, android * */ export default function hideDeviceKeyboard (strategy = 'tapOutside', key) { let args = { strategy } if (key) { args.key = key } return this.requestHandler.create({ path: '/session/:sessionId/appium/device/hide_keyboard', method: 'POST' }, args) }