olá!
Tentei utilizar o Espresso com o typeText() como indicado nessa aula, porém pelo que entendi, o Espresso não consegue utilizar o teclado para inserir caracteres com acentuação usando esse método, funciona apenas com o replaceText(). Como contornar esse problema sem utilizar o replaceText()?
Por enquanto, para passar, eu utilizarei o texto "Usuario" sem acento mesmo.
A stack trace inteira segue abaixo:
Started running tests
java.lang.RuntimeException: Failed to get key events for string Usuário (i.e. current IME does not understand how to translate the string into key events). As a workaround, you can use replaceText action to set the text directly in the EditText field.
at androidx.test.espresso.base.UiControllerImpl.injectString(UiControllerImpl.java:96)
at androidx.test.espresso.action.TypeTextAction.perform(TypeTextAction.java:28)
at androidx.test.espresso.ViewInteraction$SingleExecutionViewAction.perform(ViewInteraction.java:16)
at androidx.test.espresso.ViewInteraction.doPerform(ViewInteraction.java:65)
at androidx.test.espresso.ViewInteraction.access$100(ViewInteraction.java:15)
at androidx.test.espresso.ViewInteraction$1.call(ViewInteraction.java:3)
at androidx.test.espresso.ViewInteraction$1.call(ViewInteraction.java:2)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7356)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)
Tests ran to completion.