We are trying to write a test for an Native Android App and this has been driving me nuts.
solo.enterText(6, "100");
solo.enterText(7, "200");
solo.enterText(8, "300");
solo.enterText(9, "400");
all work fine, but once the index goes over 10 it fails to find any of the fields.
solo.enterText(10, "500");
solo.enterText(11, "600");
It also seems a little crazy to be counting the text fields and from within UIAutomator Viewer it does not seem to provide the true index number.
Is there a way to select the text field by resource id or the field name instead of the index number?
thanks for your help