摘要: 1.实现多组合测试0-0、0-1、1-0、1-1 测试数据: iphone_json = [{ "devicePhonePojoList": [ { "registrationId": "65ou4oadi7o7fuo", "mobile": "" } ] }, { "devicePhonePojo 阅读全文
posted @ 2020-08-18 10:48 拂晓lu 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 一、文件和目录操作 创建、删除、修改、拼接、获取当前目录、遍历目录下的文件、获取文件大小、修改日期、判断文件是否存在等。略 二、日期和时间(内置模块:time、datatime、calendar) 1.time.time() #返回自1970年1月1日0点到当前时间经过的秒数 实例1:获取某函数执行 阅读全文
posted @ 2020-08-18 10:40 拂晓lu 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 一、环境准备(python3.7) 1.安装facebook-wda 给python安装facebook-wda扩展,sudo pip install --pre facebook-wda 从github上下载facebook-wda,git clone https://github.com/ope 阅读全文
posted @ 2020-08-17 18:46 拂晓lu 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 1.assert assert xx 判断xx为真 assert not xx 判断xx不为真 assert a in b 判断b包含a assert a == b 判断a等于b assert a != b 判断a不等于b 2.pytest.ini cmd执行:pytest --help #查看py 阅读全文
posted @ 2020-08-17 14:30 拂晓lu 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: 问题:终端执行 allure serve reports 报错: 一、解决方法:将jdk版本切换至jdk1.8,下载链接:https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html,报错的版本是Java14 二 阅读全文
posted @ 2020-08-13 16:12 拂晓lu 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 一、准备 1.cd webDriverAgent,创建start.sh文件 touch start.sh vi start.sh 2.start.sh文件保存内容如下,并保存 # 解锁keychain,以便可以正常的签名应用, PASSWORD="123" security unlock-keych 阅读全文
posted @ 2020-08-04 15:21 拂晓lu 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 一、环境搭建准备 安装homebrew:https://www.jianshu.com/p/2af8d44d7230 安装libimobiledevice:见上面链接 安装ideviceinstaller:见上面链接 安装crathage:brew install carthage 安装node:b 阅读全文
posted @ 2020-08-03 20:11 拂晓lu 阅读(1268) 评论(0) 推荐(0) 编辑
摘要: 一、查看端口被占用情况 1.以管理员身份运行; 2.进入命令提示符,输入netstat -ano命令,按回车键查看所有被占用的端口情况; 3.查找对应的端口占用的进程:netstat -aon|findstr "8080" ,找到占用8080端口对应的程序的PID号; 4.查到对应进程id后,就可以 阅读全文
posted @ 2020-07-30 16:26 拂晓lu 阅读(1982) 评论(0) 推荐(0) 编辑
摘要: unittest框架 unittest是python自动测试框架,核心:test case, test suite, test runner, test fixture。 官方文档,python3版本:https://docs.python.org/zh-tw/3/library/unittest. 阅读全文
posted @ 2020-07-24 14:49 拂晓lu 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 一、软件安装 1.jdk,备注安装1.8的版本 2.Android-sdk 3.Python 4.Appium 安装Appium desktop,https://github.com/appium/appium-desktop/releases,Appium-windows-1.17.1-1.exe 阅读全文
posted @ 2020-07-23 16:04 拂晓lu 阅读(254) 评论(0) 推荐(0) 编辑