Skip to content

Commit 38a9429

Browse files
Merge pull request #140 from DylanLacey/hide
Add keyboard hidin'
2 parents c0076e9 + f6d5987 commit 38a9429

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

lib/appium_lib/device/device.rb

+15
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@ module Device
4141
# @!method shake
4242
# Cause the device to shake
4343

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+
4453
class << self
4554
def extended(mod)
4655
extend_webdriver_with_forwardable
@@ -85,6 +94,12 @@ def current_context=(context=null)
8594
end
8695
end
8796

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+
88103
extend_search_contexts
89104
end
90105

0 commit comments

Comments
 (0)