我是 Robotium 的新手。我使用对话框生成器创建了一个警报对话框,并使用 show 命令调用它。默认情况下,我能够使用 Robotium 触发“确定”按钮,但我无法对“取消”按钮执行相同操作。由于对话框没有与 id 关联,我不确定如何获取按钮的 id。这是我的对话框代码
alertDialogBuilder
.setMessage("Please enter only numbers without any spaces")
.setCancelable(true)
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
})
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
我用来触发测试类中的“确定”按钮的代码是
solo.getCurrentActivity().runOnUiThread(new Runnable() {
public void run() {
solo.getCurrentActivity().getCurrentFocus().requestFocus();
}
});
this.sendKeys(KeyEvent.KEYCODE_DPAD_CENTER);
如何为“取消”按钮做同样的事情?提前致谢。