在Robotium中: - 我正在使用Solo类编写自动化脚本。现在我必须在我的应用程序中验证图像。
对于文字,我们可以使用Assert.assertTrue(solo.searchText("rtf"));
对于图像,Robotium Solo Class中是否有任何命令?
答案 0 :(得分:2)
不是真的。大多数建议 test 的方式(其含义可能不同)ImageViews由:
给出此外,您可能需要查看其他方法的this discussion以便直观地检查图像。
答案 1 :(得分:1)
你可以试试这个:
assertTrue(solo.getCurrentActivity().getResources().getDrawable(R.drawable.logo).isVisible());