我有自定义布局的微调器:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/iv_icon"
android:layout_width="60dp"
android:layout_height="60dp" />
<TextView
android:id="@+id/tv_text"
android:textColor="#FFFFFF"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
我需要检查所选项目的R.id.tv_text
中的值是否与特定文字匹配。
是否可以在没有实现自定义Matcher类的情况下执行此操作?
我的简单测试:
@SmallTest
public class CategoryTest {
public static final String TEXT_TO_MATCH = "Spinner item text";
@Test
public void testCreate() {
...
onView(withId(R.id.spn_tt)).perform(click()); // open spinner
onView(allOf(withId(R.id.tv_text), withText(TEXT_TO_MATCH))).perform(click()); // find item by text and click
onView(withId(R.id.spn_tt)).check(matches(withTextInSpinnerSelectedView(TEXT_TO_MATCH))); // check if right item selected by text
}
}
答案 0 :(得分:2)
我没有找到比创建自定义匹配器更简单的方法,该自定义匹配器在Spinner所选项目的任何TextView(或其继承人)中查找特定文本。有一个我的自定义匹配器:https://gist.github.com/igorokr/5f3db37f0b9eb8b2feae
答案 1 :(得分:2)
对我来说真的很简单的解决方案.....不使用匹配器 对于CustomSpinner
onView(withId(R.id.custom_spinner)).perform(click());
onData(anything()).atPosition(1).perform(click());
onView(withId(R.id.custom_spinner)).check(matches(withSpinnerText(containsString("yourstring"))));