Closed GoogleCodeExporter closed 9 years ago
I am running into the same problem with the Nexus 5 and the softkeyboard being
open, before the button click. I enter text into the edit text field then
closeSoftKeyboard then preform click. I put a 100 ms sleep in now for a short
term fix and the test now pass.
onView(withId(R.id.face_amount)).perform(typeText(testFaceAmt), closeSoftKeyboard());
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
onView(withId(R.id.calculate_button)).perform(click());
Original comment by brandonb...@gmail.com
on 5 Dec 2013 at 5:36
This is likely due to animations delaying the close of the soft keyboard. Our
deployment instructions say:
To avoid flakiness, we highly recommend that you turn off system animations on
the virtual or physical device(s) used for testing.
Please try that.
Original comment by vale...@google.com
on 16 Dec 2013 at 6:12
System animations were turned off. Bug happens regardless.
Original comment by jette.da...@gmail.com
on 17 Dec 2013 at 2:18
Original issue reported on code.google.com by
daniel.j...@jadedpixel.com
on 28 Nov 2013 at 5:32