I am writing a JUnit test case for my Android app. The test class extends ActivityInstrumentationTestCase2
and calls sendKeys()
to emulate user input for TextEdit
widgets. However, all of the alphabetic keycodes (e.g. KeyEvent.KEYCODE_G
) only send lower case letters to the TextEdit
. I tried sending KeyEvent.KEYCODE_SHIFT_LEFT
before sending an alphabetic keycode, but that didn't seem to work. So how do I simulate the user typing an upper-case letter?
Edit:
I can enter upper case letters manually. In fact, the EditText is defined as
<EditText android:id="@id/brand_text"
android:singleLine="true"
android:capitalize="words"
android:hint="@string/brand_hint"
/>
The android:capitalize="words"
attribute forces the onscreen keyboard into uppercase mode in the emulator. (I assume it will do the same on a device but don't have one to test it on.) Since the emulator which comes with the SDK doesn't emulate the hardware keyboard, I have been unable to test how my UI works using hard keys.
I also tried
EditText brandText = this.activity.findViewById(R.id.brand_text);
brandText.setText(someString);
However, the test failed when I did this. I axed all that code, so I don't have the details here at the moment. I will try to recreate it and edit this question with those details.