TextView
にEspresso
という文字列が含まれているとはどうでしょうか。エスプレッソ - TextViewに文字列が含まれています
の同等:withText
onView(...).check(matches(withText("Subby")));
onView(withId(R.id.textView)).check(matches(withText("Subby")));
TextView
にEspresso
という文字列が含まれているとはどうでしょうか。エスプレッソ - TextViewに文字列が含まれています
の同等:withText
onView(...).check(matches(withText("Subby")));
onView(withId(R.id.textView)).check(matches(withText("Subby")));
使用。これは、containsStringメソッドを持っています。 私はそれがエスプレッソの図書館にあると信じています。
あなたはあなたのクラスの静的インポート、それをすることができますのTextViewであなたの方法で
import static org.hamcrest.core.StringContains.containsString;
使用containsString:
textView.check(matches(withText(containsString("Test"))));
使用 'withText(のstartsWith( "Subby"))'と一致します希望のテキストで始まるTextView。 ( 'withText(endsWith(...)) 'と同じです。 – chrjs