当我使用测试时 – 我在特殊模块中添加类并运行测试配置.类扩展(例如)TestCase并且运行良好.
但是当我扩展UiautomatorTestCase时 – 我得到了错误
java.lang.RuntimeException: Stub! at com.androID.uiautomator.testrunner.UiautomatorTestCase.<init> (UiautomatorTestCase.java:5) ...
我的简单课程:
import com.androID.uiautomator.core.UiObjectNotFoundException;import com.androID.uiautomator.testrunner.UiautomatorTestCase;public class autoTest extends UiautomatorTestCase { public voID testSome() throws UiObjectNotFoundException { getUIDevice().pressHome(); }}
如何在AndroID Studio IDE中运行它?
解决方法:
好吧,如果你有兴趣再试一次……我能够通过以下[Github项目](https://github.com/wiliamsouza/bluetooth)在AndroID Studio中启动UIautomator项目
>在本地克隆项目.
>编辑gradle.propertIEs文件以指向您的sdk,目标和构建工具
>导入到AndroID Studio,如果提示,请务必选择Gradle.
随附的[博客文章](http://wiliamsouza.github.io/#/2013/10/30/android-uiautomator-gradle-build-system)有更多细节.
我用自己的测试用例进行了修改,运行良好.
总结以上是内存溢出为你收集整理的从Android Studio运行UiAutomator API(v0.8)全部内容,希望文章能够帮你解决从Android Studio运行UiAutomator API(v0.8)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)