webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
37 lines (32 loc) • 988 B
JavaScript
/**
*
* Hide the keyboard.
*
* <example>
: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');
});
* </example>
*
* @param {String} strategy desired strategy to close keyboard ('tapOutside' or 'pressKey')
*
* @see https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/other/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)
}