Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Robotium 中测试一个简单的选择器。有什么方法可以直接或间接地在我的测试用例中测试选择器?
Robotium 允许您使用以下方式设置选择器,例如 DatePicker
solo.clickOnButton(0); solo.setDatePicker(0, year, month, day); solo.clickOnButton("Set");
希望这可以帮助。时间选择器有一个类似的方法,称为
solo.setTimePicker(0, hours, minutes);
希望这可以帮助。