如何使用Espresso检查EditText的字体大小,高度和宽度?

此刻我将使用以下文本:
onView(withId(R.id.editText1)).perform(clearText(), typeText("Amr"));
并阅读文字:

onView(withId(R.id.editText1)).check(matches(withText("Amr")));

最佳答案

您将必须创建自己的自定义匹配器,因为Espresso默认情况下不支持任何这些匹配器。

幸运的是,这很容易做到。看一下此示例中的字体大小:

public class FontSizeMatcher extends TypeSafeMatcher<View> {

    private final float expectedSize;

    public FontSizeMatcher(float expectedSize) {
        super(View.class);
        this.expectedSize = expectedSize;
    }

    @Override
    protected boolean matchesSafely(View target) {
        if (!(target instanceof TextView)){
            return false;
        }
        TextView targetEditText = (TextView) target;
        return targetEditText.getTextSize() == expectedSize;
    }


    @Override
    public void describeTo(Description description) {
        description.appendText("with fontSize: ");
        description.appendValue(expectedSize);
    }

}

然后像这样创建一个入口点:
public static Matcher<View> withFontSize(final float fontSize) {
    return new FontSizeMatcher(fontSize);
}

并像这样使用它:
onView(withId(R.id.editText1)).check(matches(withFontSize(36)));

对于宽度和高度,可以类似的方式完成。

10-08 06:15