摘要: 一、软件质量模型 1、功能性:功能是否满足用户需求 2、易用性:是否好用 3、可靠性:在指定条件下,软件是否正常运行 4、效率:性能好不好 5、维护性:软件可被修改的能力 6、可移植性:在不同软硬件环境下的适应能力 二、应用: 1、产品型软件:针对大众的软件 形成文档:PRD (产品需求文档) 2、 阅读全文
posted @ 2020-01-02 20:05 badbadboy 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 1. 怎么让测试覆盖率更加全面 1. 从测试点横向测试 2. 从测试类型纵向测试 阅读全文
posted @ 2020-01-02 19:31 badbadboy 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 该代码还存在优化的地方,后续优化方向:结合unittest、ddt、内反射搭建自动化测试框架 实现代码如下: import os import threading from xctest_app.xc_tools.get_aapt import * from xctest_app.xc_tools. 阅读全文
posted @ 2020-01-02 13:37 badbadboy 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 该代码还存在优化的地方,后续优化方向:结合unittest、ddt、内反射搭建自动化测试框架 实现代码如下: #通过u2实现云测 import threading import uiautomator2 as u2 import os,time from xctest_app.xc_tools.ge 阅读全文
posted @ 2020-01-02 13:28 badbadboy 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 该代码还存在优化的地方,后续优化方向:结合unittest、ddt、内反射搭建自动化测试框架 实现代码如下: #通过appium实现云测 import os import threading import time from appium import webdriver from xctest_a 阅读全文
posted @ 2020-01-02 13:26 badbadboy 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 一、安装 pip install uiautomator2 pip install pillow 安装移动代理服务(需要adb连接上手机): python -m uiautomator2 init 二、连接手机的方式 1. 根据地址连接:d=u2.connect(udid) 2. 根据usb连接:d 阅读全文
posted @ 2020-01-02 11:22 badbadboy 阅读(790) 评论(0) 推荐(0) 编辑