Robotium用例命令行运行、拔除数据线及TestSuite方式执行

一、命令行运行脚本及拔除数据线执行

1.所有的测试用例: adb shell am instrument -w packagename/InstrumentationTestRunnername

2.运行单个测试类或某个TestSuite: adb shell am instrument -e class packagename.testclassname -w packagename/InstrumentationTestRunnername

3.运行某个测试类里的某个测试方法: adb shell am instrument -e class package.测试类名#方法名 -w 工程名.package/InstrumentationTestRunnername

4.运行两个不同的测试类或类中的方法:adb shell am instrument -e class package.测试类名,package.测试类名#方法名 -w 工程名.package/InstrumentationTestRunnername

5.adb shell pm list instrumentation  查看你应用中的instrumentation

拔除数据线进行自动化测试,实质上是可以自己写一个应用程序,获得和被测应用相同的签名,我自己写了一个demo,在应用中添一个按钮,然后监听onclick事件。

Robotium用例命令行运行、拔除数据线及TestSuite方式执行_第1张图片

    里边可以更改成自己想要运行的方式,当然还可以自己加更多的组合按钮和事件完成更复杂的业务逻辑的自动测试。另外也是参照的网上说的方法,sdk level 17以上启动脚本有Bug,原因是加入了INTERACT_ACROSS_USERS_FULL,目的在于允许不同用户的应用之间可以交互,为了安全,因此在交互时会校验userSerialNumber,发现用户标示不匹配,导致权限校验失败,就会产生startInstrumentation asks to run as user -2 but is calling from user 0;this requires android.permission.INTERACT_ACROSS_USERS_FULL的报错,导致脚本无法调用。

网上大神的做法是sdk 17以上: adb shell am instrument --user 0 -w packagename/InstrumentationTestRunnername

在调用时使用Build.VERSION.SDK_INT<17对当前版本做判断选择合适命令行启动方式。

参阅网址http://blog.csdn.net/wirelessqa/article/details/8999433

http://www.cnblogs.com/cologne/p/3796408.html 

http://www.blogjava.net/qileilove/archive/2014/04/25/412909.html 

二、采用TestSuite方式控制每条Case的运行顺序。

1.执行某个测试类中的某个testcase

 Robotium用例命令行运行、拔除数据线及TestSuite方式执行_第2张图片

2.执行某个测试类

 Robotium用例命令行运行、拔除数据线及TestSuite方式执行_第3张图片

参阅网址:

http://stackoverflow.com/questions/13149817/how-to-create-a-robotium-testsuite 

http://stackoverflow.com/questions/9210462/shutting-down-and-restarting-app-in-test-activities-within-a-test-suite 

你可能感兴趣的:(Robotium笔记)