介绍Robotium+Orange实现androidUI自动化测试
作者:网络转载 发布时间:[ 2014/1/27 16:22:33 ] 推荐标签:自动化测试 android Robotium
1.4 测试结果收集功能
每次运行一个用例结束的时候,会把当前用例的运行结果加入到xml的节点中,所有用例运行结束后,xml文件会保存在PC端的指定位置下。
收集到的测试结果样式如下:
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="com.netease.mobile.autotest.testing.LoginTest">
<testcase classname="com.netease.mobile.autotest.testing.LoginTest" name="testUnLogin"
time="59.499"/>
</testsuite>
<testsuite name="com.netease.mobile.autotest.testing.SubscribeTest">
<testcase classname="com.netease.mobile.autotest.testing.SubscribeTest" name="testAdd2"
time="74.099">
<failure message="junit.framework.AssertionFailedError: Button with the text: 取消订阅 is not found!"
type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError:
Button with the text: 取消订阅 is not found!
at com.jayway.android.robotium.solo.Clicker.clickOn(Clicker.java:324)
at com.jayway.android.robotium.solo.Solo.clickOnButton(Solo.java:684)
at com.netease.mobile.autotest.common.PrisOperation.addSubscribe(PrisOperation.java:91)
at com.netease.mobile.autotest.testing.SubscribeTest.testAdd2(SubscribeTest.java:126)</failure>
</testcase>
</testsuite>
</testsuites>
1.5 测试报告生成功能
首先会获取到收集的测试结果xml文件,然后解析xml同时加入一些css样式,生成html文件,邮件中发送的正文内容是html文件内容。
这里是一个解析xml以及样式处理的过程。
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11