我知道如何测试EditText
中是否设置了错误文本:
editText.check(matches(hasErrorText("")));
现在我想测试EditText
是否没有设置错误文本。我试过这个,但它不起作用。
editText.check((matches(not(hasErrorText("")))));
有谁知道怎么做?谢谢!
答案 0 :(得分:7)
我认为这不可能,取决于你想要什么,我会使用自定义匹配器:
public static Matcher<View> hasNoErrorText() {
return new BoundedMatcher<View, EditText>(EditText.class) {
@Override
public void describeTo(Description description) {
description.appendText("has no error text: ");
}
@Override
protected boolean matchesSafely(EditText view) {
return view.getError() == null;
}
};
}
此匹配器可以检查EditText是否没有任何错误文本集,使用它如下:
onView(allOf(withId(R.id.edittext), isDisplayed())).check(matches(hasNoErrorText()));