I\'m attempting to update an EditText as part of an Espresso test with:
EditText
onView(allOf(withClassName(endsWith(\"EditText\")), withText(is(\"Test\"
You can use the replaceText method.
replaceText
onView(allOf(withClassName(endsWith("EditText")), withText(is("Test")))) .perform(replaceText("Another test"));