-
Notifications
You must be signed in to change notification settings - Fork 0
hide_keyboard
roei sabag edited this page Jul 12, 2020
·
1 revision
Hide soft keyboard.
Mobile Web, Mobile Native
None
None
http://appium.io/docs/en/commands/device/keys/hide-keyboard/
Hide soft keyboard..
{
"action": "HideKeyboard"
}hide keyboard
// option no.1
var actionRule = new ActionRule
{
Action = PluginsList.HideKeyboard
};
// option no.2
var actionRule = new
{
Action = "HideKeyboard"
};action_rule = {
"action": "HideKeyboard"
}var actionRule = {
action: "HideKeyboard"
};ActionRule actionRule = new ActionRule().setAction("HideKeyboard");