4

我正在使用 robotsium 进行测试,但无法弄清楚如何在没有文本的情况下单击按钮。测试失败并出现跟踪:

junit.framework.AssertionFailedError:索引为 2131034130 的按钮不可用!

4

2 回答 2

13

索引系统是出于黑盒测试的原因所以如果您知道要单击的视图的资源 ID,您可以使用solo.getView(R.id)来获取对象,然后使用solo.clickOnView(View view)来单击它。

于 2012-10-07T18:01:42.833 回答
1

我发现实际的方法参数不是ID,而是“索引”,只要它意味着。所以我的解决方法是:

private void clickOnButtonByID(int ID) {
    // get a list of all ImageButtons on the current activity
    List<Button> btnList = solo.getCurrentButtons();
    for (int i = 0; i < btnList.size(); i++) {
        Button btn = btnList.get(i);
        // find button by id
        if (btn.getId() == ID) {
            // click on the button using index (not id !!!)
            solo.clickOnButton(i);
            // check if new activity is the 'About'
        } else {
            // other code
        }
    }
}
于 2012-10-06T10:43:55.317 回答