随笔分类 -  自动化测试

摘要:性能测试包含负载测试、压力测试、大数据量测试、疲劳强度测试等。 阅读全文
posted @ 2020-10-29 14:54 anobscureretreat 阅读(1349) 评论(0) 推荐(0) 编辑
摘要:制定性能测试计划—>开发测试脚本—>设计测试场景—>执行测试场景—>监控测试场景—>分析测试结果 阅读全文
posted @ 2020-10-29 14:53 anobscureretreat 阅读(420) 评论(0) 推荐(0) 编辑
摘要:功能测试通过;一般需要进行性能测试的系统,都是用户量比较大、业务使用比较频繁、比较重要的功能模块。 阅读全文
posted @ 2020-10-29 14:51 anobscureretreat 阅读(1262) 评论(0) 推荐(0) 编辑
摘要:安装 yum -y install httpd-tools 使用 [root@xxx ~]# ab ab: wrong number of arguments Usage: ab [options] [http[s]://]hostname[:port]/path Options are: -n r 阅读全文
posted @ 2020-10-29 13:39 anobscureretreat 阅读(117) 评论(0) 推荐(0) 编辑
摘要:WebBench的主要工作原理 下载地址: https://github.com/EZLippi/WebBench 安装: [root@xxx ~]# unzip master.zip creating: WebBench-master/ inflating: WebBench-master/LIC 阅读全文
posted @ 2020-10-29 13:12 anobscureretreat 阅读(232) 评论(0) 推荐(0) 编辑
摘要:python3环境搭建,不赘述。 #小编使用的是python3.7pip3.7 install -U airtest #小编环境为macmacname@MacdeMBP Desktop % cd /Library/Frameworks/Python.framework/Versions/3.7/li 阅读全文
posted @ 2020-10-21 12:46 anobscureretreat 阅读(243) 评论(0) 推荐(0) 编辑
摘要:airtest环境搭建,将下面的图片和代码文件放在同一个目录下, 确保手机已开启usb调试, 将游戏调整到副本页面, 运行py文件,即可! pic # # # # code from airtest.core.api import * import time import datetime impo 阅读全文
posted @ 2020-10-21 12:45 anobscureretreat 阅读(199) 评论(0) 推荐(0) 编辑
摘要:软件测试可以理解成为一个用来鉴定软件是否符合需求以及是否有缺陷的过程。根据不同的维度,软件测试又可以细分成为不同的测试类型。 首先根据测试方法来划分,可以分为: 黑盒测试:最基础的功能测试,不关心内部的代码实现,而仅验证输入输出的正确性。 白盒测试:基于逻辑驱动或者基于代码测试,打开代码内部的实现, 阅读全文
posted @ 2020-10-16 22:29 anobscureretreat 阅读(141) 评论(0) 推荐(0) 编辑
摘要:Swagger首页,右键下方链接,然后另存为json文件 如下文件 apizza后台,点击导入 选择swagger保存的json文件,点击导入 OK了! 阅读全文
posted @ 2020-08-19 17:19 anobscureretreat 阅读(645) 评论(0) 推荐(0) 编辑
摘要:一 获取github accessToken 依次点击 settings > Developer settings >Personal access tokens 到这里如果没有就创建一个 创建之后需要记住,因为也为刷新就没有了,这里的权限,按照需求点击 (如果不懂就全选) 二 Jenkins 配置 阅读全文
posted @ 2020-08-19 17:17 anobscureretreat 阅读(151) 评论(0) 推荐(0) 编辑
摘要:打开postman 选择json文件 通过链接导入接口 阅读全文
posted @ 2020-08-19 17:15 anobscureretreat 阅读(891) 评论(0) 推荐(0) 编辑
摘要:code #cs AutoIt Version: 3.3.14.5 Author: myName Script Function: Template AutoIt script. #ce ; Script Start - Add your code below here ; 带有三个自定义函数的示例 阅读全文
posted @ 2020-08-19 11:58 anobscureretreat 阅读(182) 评论(0) 推荐(0) 编辑
摘要:最近在研究针对windows桌面应用程序的自动化工具,查找了网上相关资料,UI自动化工具很多,但是想同时支持windows桌面应用程序、web端以及APP段的工具少的可怜,以下是一些工具的总结: pyautogui Pyautogui对鼠标的移动、点击、拖拽,键盘按键输入、按住操作,以及鼠标+键盘的 阅读全文
posted @ 2020-08-19 11:57 anobscureretreat 阅读(5204) 评论(0) 推荐(1) 编辑
摘要:from selenium import webdriver from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument('--headles 阅读全文
posted @ 2019-02-21 09:39 anobscureretreat 阅读(416) 评论(0) 推荐(0) 编辑
摘要:#include <File.au3> #include <MsgBoxConstants.au3> MsgBox($MB_SYSTEMMODAL, "", @ScriptDir & @CRLF) ;信息框输出文件运行目录并附带回车 阅读全文
posted @ 2016-08-30 21:05 anobscureretreat 阅读(1042) 评论(0) 推荐(0) 编辑
摘要:#include <MsgBoxConstants.au3> Local $aDays = StringSplit("Mon,Tues,Wed,Thur,Fri,Sat,Sun", ",") ;用逗号作为分隔符,分割字符串,返回分割后的元素的数组 For $i = 1 To $aDays[0] ;循 阅读全文
posted @ 2016-08-30 20:59 anobscureretreat 阅读(1650) 评论(0) 推荐(0) 编辑