How to send international characters to textbox?

I’m trying to send “中文繁體やりもをヨメЙЯЖΜλξÄŒ조선말한국어” to a textbox, but only get an empty string (in both Emulator and real Android phone). Anyone knows how to do that?

Thanks in advance!

capabilities.setCapability("unicodeKeyboard", true);

It works. Thanks so much!

I got a problem after setting this capability. The default keyboard is changed to “Appium Android Input Manager for Unicode”, and the keyboard does not show up any more.

Do you know how to change it back to default keyboard in code?

I tried --full-reset, but it didn’t work.

Thanks!

try:
capabilities.setCapability(“unicodeKeyboard”, true);
capabilities.setCapability(“resetKeyboard”, true);