gpt4 book ai didi

android - 在 Robotium 中选择 Spinner 错误的项目

转载 作者:行者123 更新时间:2023-11-30 01:39:54 25 4
gpt4 key购买 nike

我做了一个包含 Spinner 的 UI 测试。当我执行时:

  solo.clickOnView(solo.getView(R.id.spinner_editwebsite));

微调器可以显示选项,但无法选择选项然后测试停止!

然后发生错误!

我尝试添加

`solo.pressSpinnerItem(0,1);` 

后面

`solo.clickOnView(solo.getView(R.id.spinner_editwebsite));`

但不起作用!

最佳答案

看看这个答案:

Seems they took those classes out now. Just ran into this myself butfound a way to do this properly and generically.

// 0 is the first spinner in the layout
View view1 = solo.getView(Spinner.class, 0);
solo.clickOnView(view1);
solo.scrollToTop(); // I put this in here so that it always keeps the list at start
// select the 10th item in the spinner
solo.clickOnView(solo.getView(TextView.class, 10));

From: How do I click the first item in a spinner using Robotium?

如您所见,您尝试使用的方法似乎已被贬低。尝试使用上面的代码而不是您的代码。

希望对你有帮助

关于android - 在 Robotium 中选择 Spinner 错误的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34629899/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com