public static interface WebDriver.ImeHandler
| Modifier and Type | Method and Description |
|---|---|
void |
activateEngine(java.lang.String engine)
Make an engines that is available (appears on the list returned by getAvailableEngines)
active.
|
void |
deactivate()
De-activate IME input (turns off the currently activated engine).
|
java.lang.String |
getActiveEngine()
Get the name of the active IME engine.
|
java.util.List<java.lang.String> |
getAvailableEngines()
All available engines on the machine.
|
boolean |
isActivated()
Indicates whether IME input active at the moment (not if it's available).
|
java.util.List<java.lang.String> getAvailableEngines()
ImeNotAvailableException - if the host does not support IME.java.lang.String getActiveEngine()
ImeNotAvailableException - if the host does not support IME.boolean isActivated()
ImeNotAvailableException - if the host does not support IME.void deactivate()
ImeNotAvailableException - if the host does not support IME.void activateEngine(java.lang.String engine)
engine - name of engine to activate.ImeNotAvailableException - if the host does not support IME.ImeActivationFailedException - if the engine is not available or if activation failed
for other reasons.