I have the following script for typing \'33\' into the Calculator, in Android, using UiAutomator. However, only the first \'3\' is accepted, the second press is entirely ig
Create a UiObject for 3 button and click twice.below is the snippet
UiObject three = new UiObject(new UiSelector().text("3")); three.click(); three.click();