Package io.appium.java_client
Interface HidesKeyboard
-
- All Superinterfaces:
CanRememberExtensionPresence
,ExecutesMethod
- All Known Subinterfaces:
HidesKeyboardWithKeyName
- All Known Implementing Classes:
AndroidDriver
,IOSDriver
public interface HidesKeyboard extends ExecutesMethod, CanRememberExtensionPresence
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
hideKeyboard()
Hides the keyboard if it is showing.-
Methods inherited from interface io.appium.java_client.CanRememberExtensionPresence
assertExtensionExists, markExtensionAbsence
-
Methods inherited from interface io.appium.java_client.ExecutesMethod
execute, execute
-
-
-
-
Method Detail
-
hideKeyboard
default void hideKeyboard()
Hides the keyboard if it is showing. If the on-screen keyboard does not have any dedicated button that hides it then an error is going to be thrown. In such case you must emulate same actions an app user would do to hide the keyboard. See the documentation for 'mobile: hideKeyboard' extension for more details.
-
-