浓缩咖啡:为啥旋转器在选择后不关闭?
Posted
技术标签:
【中文标题】浓缩咖啡:为啥旋转器在选择后不关闭?【英文标题】:Espresso: Why don't spinners close after selection?浓缩咖啡:为什么旋转器在选择后不关闭? 【发布时间】:2016-06-03 13:26:07 【问题描述】:我有一个关于在 Spinners with Espresso 中选择项目的问题。或者更准确地说:选择有效,但之后视图断言失败,因为微调器仍处于打开状态。
假设我有一个非常简单的活动,其中包含一个微调器和一个显示选择的文本视图,如下所示:
现在,我编写了一个 Espresso 测试,选择“dogs”并验证 textview 是否已相应更新:
@Test
public void selectDogs() throws Exception
onData(allOf(is(instanceOf(String.class)), is("dogs")))
.inAdapterView(withId(R.id.spinner))
.perform(click());
onView(withId(R.id.selected)).check(matches(withText("dogs")));
该测试失败,因为onData()...perform(click());
没有关闭微调器,它只是让它保持打开状态。通过调试验证:
例外是:
android.support.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with id: org.flinc.app:id/selected
If the target view is not part of the view hierarchy, you may need to use Espresso.onData to load it from one of the following AdapterViews:android.widget.ListPopupWindow$DropDownListView226cb88 VFED.VC.. .F...... 0,0-231,432
我可以(在某种程度上)通过在微调器选择后添加pressBack()
来修复我的测试,但对我来说这不是正确的解决方案。它也在模拟器上产生问题,但它似乎在我的设备上运行良好。
如何正确选择微调器中的某些内容然后关闭它?
非常感谢您的帮助!
这里是活动代码供参考:
@Override
protected void onCreate(@Nullable Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.test_spinner);
Spinner spinner = (Spinner) findViewById(R.id.spinner);
final TextView selected = (TextView) findViewById(R.id.selected);
final List<String> items = Arrays.asList("cats", "dogs", "unicorns");
final ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item, items);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener()
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id)
selected.setText(items.get(position));
@Override
public void onNothingSelected(AdapterView<?> parent)
selected.setText("");
);
【问题讨论】:
点击后尝试进入睡眠状态,并确保您的测试设备上未启用动画 @jeprubio 我的测试设备上总是禁用动画,添加睡眠也无济于事。 这个运气好吗?除了我有多个微调器之外,我面临着类似的问题。 ***.com/questions/45245935/… 【参考方案1】:你必须先点击微调器,使用这个代码:
@Test
public void selectDogs() throws Exception
onView(withId(R.id.spinner)).perform(click());
onData(allOf(is(instanceOf(String.class)), is("dogs")))
.perform(click());
onView(withId(R.id.selected)).check(matches(withText("dogs")));
【讨论】:
@tarrant 您收到任何错误消息吗?我使用这两行代码从微调器中选择值并为我工作。 原来它在模拟器上的 API 19 中失败,API 21 工作正常(关闭)以上是关于浓缩咖啡:为啥旋转器在选择后不关闭?的主要内容,如果未能解决你的问题,请参考以下文章
意式浓缩咖啡测试时,Android 设备不会在屏幕上启动活动