I\'m attempting to update an EditText as part of an Espresso test with:
EditText
onView(allOf(withClassName(endsWith(\"EditText\")), withText(is(\"Test\"
To set value in EditText with Espresso simple like this
onView(withId(R.id.yourIdEditText)).perform(typeText("Your Text"))