软件测试基本理论 软件测试概念:通过各种手段和测试工具,判断软件系统是否能够满足预期期望。 从软件开发的过程按阶段划分有 A.单元测试 B.集成测试 C.确认测试 D.系统测试 E.验收测试 * 测... 笔记 2015/04/20 围观:1967人 阅读全文 评论
用uiautomatorviewer查看控件resource-id和程序包名 uiautomatorviewer和hierarchyviewer都是安卓sdk里提供的功能,hierarchyviewer主要查看安卓系统activity跳转情况,uiautomatorviewer查看控件的详细信息(包名,类名等),不能查看自定... 测试工具 2015/04/17 围观:3313人 阅读全文 评论
appium入门(手机百度自动化测试) 下载手机百度,并更名为mobile_baidu.apk,放到项目根目录apps文件夹下 用maven加入项目依赖 <?xml version="1.0" encoding="UTF-8"?>... 测试用例 2015/04/17 围观:3532人 阅读全文 评论
An unknown server-side error occurred while processing the command. 出现“An unknown server-side error occurred while processing the command”,一般是WebDriver出现异常,最后一页Swipe时需要的Duration可能要更长时间,你尝试使用加长swipe Duration的时间间隔 ... 其他 2015/04/15 围观:8613人 阅读全文 评论
怎么快速查找需要的maven库? 怎么快速查找maven库?以查找junit库为例子 打开:http://mvnrepository.com/ 搜索junit: ... 其他 2015/04/14 围观:2102人 阅读全文 评论
shell笔记 shell语言笔记: 定义shell脚本: #!/bin/bash 输出命令:echo 给某个文件执行权限:chmod +x zsn(要执行的文件) 执行某个程序:./zsn 用shell脚本输出helloworld: #!/bin/bash ehco “helloworld̶... 笔记 2015/04/14 围观:2146人 阅读全文 评论
用junit完善appium入门教程 在看这篇文章之前,请先看下面两篇文章(因为是基于上面两篇修改) appium入门教程:http://www.izsn.cn/appium%E5%85%A5%E9%97%A8%E6%95%99%E7%A8%8Bintellij-idea.html junit介绍:http://www.... 自动化测试 2015/04/14 围观:2492人 阅读全文 评论
JUnit 简介 一、简介 JUnit是一个开源的java单元测试框架。在1997年,由 Erich Gamma 和 Kent Beck 开发完成。这两个牛人中 Erich Gamma 是 GOF 之一;Kent Beck 则在 XP 中有重要的贡献(你觉得眼熟一点都不奇怪)。 正如常言道:... 测试工具 2015/04/14 围观:1758人 阅读全文 评论
appium入门教程(intellij idea) 1.下载appium客户端 官网下载: http://appium.io/ 网盘下载:http://yunpan.cn/cVBCxWz29kuhL 访问密码 fd70 2.新建java项目 ... 自动化测试 2015/04/14 围观:4879人 阅读全文 评论
stale element reference: element is not attached to the page document 在执行脚本时,有时候引用一些元素对象会抛出如下异常 org.openqa.selenium.StaleElementReferenceException: stale element reference: element is not attached to the page docume... 笔记 2015/04/14 围观:2420人 阅读全文 评论