Input error of Cyrillic letters - Android

Hi @remix4you,

You might be able to switch to a unicode keyboard like this:

Add this import to the top of your test:

import com.kms.katalon.core.configuration.RunConfiguration

Before the startApplication line of your test, add these lines:

RunConfiguration.setMobileDriverPreferencesProperty("unicodeKeyboard", true)
RunConfiguration.setMobileDriverPreferencesProperty("resetKeyboard", true)

Hope this helps,

Chris