File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,15 @@ module Device
41
41
# @!method shake
42
42
# Cause the device to shake
43
43
44
+ # @!method hide_keyboard
45
+ # Hide the onscreen keyboard
46
+ # @param close_key (String) the name of the key which closes the keyboard.
47
+ # Defaults to 'Done'.
48
+ # ```ruby
49
+ # hide_keyboard # Close a keyboard with the 'Done' button
50
+ # hide_keyboard('Finished') # Close a keyboard with the 'Finished' button
51
+ # ```
52
+
44
53
class << self
45
54
def extended ( mod )
46
55
extend_webdriver_with_forwardable
@@ -85,6 +94,12 @@ def current_context=(context=null)
85
94
end
86
95
end
87
96
97
+ add_endpoint_method ( :hide_keyboard , 'session/:session_id/appium/device/hide_keyboard' ) do
98
+ def hide_keyboard ( close_key = 'Done' )
99
+ execute :hide_keyboard , { } , keyName : close_key
100
+ end
101
+ end
102
+
88
103
extend_search_contexts
89
104
end
90
105
You can’t perform that action at this time.
0 commit comments