Android:如何单击禁用的按钮以启用它
我正在使用 Robotium 进行 Android UI 自动化。我被困在一个点 我试图单击应用程序中的一个按钮 最初禁用。 Robotium 找不到文本或按钮。我是 尝试以下代码。
if (solo.searchText(".*android.*"))
{
solo.clickOnText(".*android.*");
}
else solo.goBack();
单击该按钮将启用它。提前致谢。
I am using Robotium for android UI automation. I am stuck at a point
where i am trying to click on a button in the application that is
initially disabled. Robotium fails to find the text or button. I am
trying the following code.
if (solo.searchText(".*android.*"))
{
solo.clickOnText(".*android.*");
}
else solo.goBack();
Clicking on the button will enable it. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this :