摘要:
1. 查询设备号 adb devices 结果: 2. 查询日志 adb shell "logcat |grep OkHttp" 3. 安装apk adb install xxx.apk 4. 卸载app adb uninstall com.xxx.app 5. 传递文件 adb push 文件名 阅读全文
摘要:
添加:HTTP Request Add Assertions Response Assertion(响应断言) 阅读全文
摘要:
接口返回响应为: { "code":0, "data":{ "appAllowed":true, "approved":false, "createTime":1587106069000, "employeeNumber":"10025635", "enabled":true, "errorCode 阅读全文
摘要:
路径:Transaction Controller(事物控制器) Add Saampler HTTP Request 具体如下添加: 阅读全文
摘要:
Tread Group add Logic Controller Transaction Controller(事物控制器) 在其下可添加接口请求,方便管理接口 阅读全文
摘要:
创建线程Tread Group 在线程下创建:Tread Group add Config Element HTTP Request Defaults 作用: 已经添加好 Protocol Server Name or IP Port Number 后,之后的每个接口中无需再添加服务器地址及端口,和 阅读全文
摘要:
一、添加 测试计划 add Config Element JDBC Connection Configuration 配置数据库连接池 Variable Name for created pool :数据库对外对象 Database URL : jdbc:mysql://服务器地址+端口号/数据库名 阅读全文
摘要:
路径:测试计划 add Config Element User defined Variables 该模块中可添加一些 之后测试需要多次用到的参数,例如服务器地址,端口号,第三方服务等 也可添加一些时间参数 阅读全文
摘要:
一、unittest属性如下 ['BaseTestSuite', 'FunctionTestCase', 'SkipTest', 'TestCase', 'TestLoader', 'TestProgram', 'TestResult', 'TestSuite', 'TextTestResult', 阅读全文
摘要:
json:是一种数据格式,是纯字符串。可以被解析成Python的dict或者其他形式。 dict:是一个完整的数据结构,是对Hash Table这一数据结构的一种实现,是一套从存储到提取都封装好了的方案。它使用内置的哈希函数来规划key对应value的存储位置,从而获得的数据读取速度。 一、json 阅读全文
摘要:
一、GET请求 1. 代码如下 class RunMain(): def send_get(self, url, data): result = requests.get(url=url, params=data) res = result.text return res def run_main( 阅读全文