How could I check the font size, height, and width of an EditText with Espresso?
At the moment to sect the text I use:
onView(withId(R.id.editText1)).perform(clearText(), typeText("Amr"));
And to read the text:
onView(withId(R.id.editText1)).check(matches(withText("Amr")));