2021年9月15日

摘要: docker的安装与部署 官网:https://www.docker.com/ windows环境:官网-Products-Docker Desktop(windows要win10专业版才可以安装docker) mac环境:官网->Products->Docker Desktop linux-ubn 阅读全文
posted @ 2021-09-15 13:27 MHKKKK 阅读(56) 评论(0) 推荐(0)
摘要: 常用命令 查看系统内核:uname -r 查看系统版本:cat /etc/centos-release 解压.war .zip文件到指定目录:unzip web.war -d webapps/ROOT/ 移动文件到指定目录:mv chromedriver /usr/bin 删除home目录下的tes 阅读全文
posted @ 2021-09-15 13:21 MHKKKK 阅读(54) 评论(0) 推荐(0)
摘要: **** 阅读全文
posted @ 2021-09-15 13:12 MHKKKK 阅读(27) 评论(0) 推荐(0)
摘要: jenkins部署与创建 docker安装部署jenkins 创建文件影射卷 # docker volume create edc-nginx-vol // 创建一个自定义容器卷 # docker volume ls // 查看所有容器卷 # docker volume inspect edc-ng 阅读全文
posted @ 2021-09-15 13:06 MHKKKK 阅读(164) 评论(0) 推荐(0)

2021年9月13日

摘要: Allure测试框架 allure介绍 多语言多平台;炫酷;可继承到jenkins 官网:http://allure.qatools.ru/ 文档:https://docs.qameta.io/allure/# allure安装 windows 下载地址:https://repo.maven.apa 阅读全文
posted @ 2021-09-13 13:02 MHKKKK 阅读(290) 评论(0) 推荐(0)

2021年9月12日

摘要: pytest pytest介绍 文档:https://docs.pytest.org/en/latest/contents.html#toc 第三方库:https://pypi.org/search/?q=pytest pytest用例识别与运行 测试文件命名:test_*.py 或者 *_test 阅读全文
posted @ 2021-09-12 22:46 MHKKKK 阅读(150) 评论(0) 推荐(0)
摘要: unittest测试框架 单元测试概述 什么是单元测试:单元测试是开发者编写的一小段代码,用于检验被测代码的一个很小的,很明确的功能是否正确。通常而言,一个单元测试是用于判断某个特定条件(或者场景)下某个特定函数的行为 单元测试什么时候测试:程序进行代码编写的过程中 单元测试由谁负责:一般由开发负责 阅读全文
posted @ 2021-09-12 18:28 MHKKKK 阅读(75) 评论(0) 推荐(0)

2020年11月25日

摘要: 测试npc命中概率的时候,发现命中配置在0.25以下的npc,在实际命中统计中,实际命中比理论命中要高出一个很稳定的比例。 实际命中频率:理论命中 = 4:3 重新检查了配置与代码逻辑并没有发现问题,但在知乎上查到了一条介绍 https://www.zhihu.com/question/620914 阅读全文
posted @ 2020-11-25 11:00 MHKKKK 阅读(68) 评论(0) 推荐(0)

2020年11月23日

摘要: 1.引入相同路径下其他airtest脚本 # 引入 airtest.core.api from airtest.core.api import * # 引入 initial.air using("initial.air") # 引入 initial.air下initial.py里的class fro 阅读全文
posted @ 2020-11-23 17:02 MHKKKK 阅读(201) 评论(0) 推荐(0)
摘要: 1.adb 2.链接设备:adb devices 3.清空日志:adb logcat -c 4.输出日志:adb logcat > d:/xxx.txt 5.客户端压力测试(设备操作层面)monkey测试 adb shell monkey -p 包名 -v -v -v --throttle 100 阅读全文
posted @ 2020-11-23 14:32 MHKKKK 阅读(172) 评论(0) 推荐(0)

导航