上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 1. 沟通能力强,思维表达清楚, 技能程度基本能满足项目要求 2. 性能测试不仅要懂压测, 最好懂懂性能分析和调优 给开发人员提出改进意见,可以做白盒测试,测试提效的事情。 懂pringboot,懂go,微服务, 懂前端js,vue 3. 目标是全栈测试工程师, 可以学的太多,有些技能必须精通 "比 阅读全文
posted @ 2023-05-21 09:28 Jenny测试开发 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 执行命令: hrp run .\test_extract.yml --gen-html-report 日志: 6:03PM INF validate status_code assertMethod=eq checkExpr=status_code checkValue=200 checkValue 阅读全文
posted @ 2023-05-16 08:56 Jenny测试开发 阅读(330) 评论(2) 推荐(0) 编辑
摘要: 执行 hrp startproject demo 命令,即可初始化指定名称的项目工程。 hrp startproject auto 快速创建项目 demo ├── .env 是环境配置文件 ├── .gitignore 传git仓库时忽略文件 ├── debugtalk.py 辅助函数功能文件 ├─ 阅读全文
posted @ 2023-05-05 13:57 Jenny测试开发 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 背景: Pytest是纯接口的自动化框架。 而HttpRunner一款开源测试平台, 可以实现接口测试 / 压力测试DevOps / 数字体验监测。 那交个新朋友HttpRunner学习下。 米哈游-平台部、有米科技-测试与工程质量保障部、通用环球医疗-环球健康等客户案例在使用HttpRunner框 阅读全文
posted @ 2023-05-03 16:46 Jenny测试开发 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 安装环境: pip3 install httprunner 遇到问题: subprocess-exited-with-error 解决方法: pip install --upgrade setuptools 阅读全文
posted @ 2023-05-03 16:43 Jenny测试开发 阅读(101) 评论(0) 推荐(0) 编辑
摘要: import pytest@pytest.mark.parametrize("test_input, expected", [ ["1+1", 2], ["2*3", 6],])def test_eval(test_input, expected): assert eval(test_input) 阅读全文
posted @ 2023-02-06 18:25 Jenny测试开发 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一、可迭代对象 判断可迭代对象 3个内置常用函数:filter map reduce 二、Iterator 迭代器 iter() 和 next() 创建迭代器 三、循环 for…in… range 函数(上一篇公众号文章已写过) for…else 一、可迭代对象 Python中的可迭代对象基础数据类 阅读全文
posted @ 2023-01-13 16:47 Jenny测试开发 阅读(74) 评论(0) 推荐(0) 编辑
摘要: print(" 换行打印内容 ")y = 'hello\nword' # \n转义字符,代表回车\tprint(y)输出结果: print("--打印的字符串有单引号和双引号--")print('hello, \"world\", \'yo\' ')输出结果: print("--只打印字母--")p 阅读全文
posted @ 2023-01-11 18:09 Jenny测试开发 阅读(61) 评论(0) 推荐(0) 编辑
摘要: """字符串格式化"""name = 'Jenny'age = 30x = "my name is %s, age is 20" % nameprint(x)x1 = "my name is %s, age is %s" % (name, age)print(x1)# 第二种y = "my name 阅读全文
posted @ 2023-01-11 18:00 Jenny测试开发 阅读(15) 评论(0) 推荐(0) 编辑
摘要: # 变量赋值 print("_____________") a = b = c = 1 print(a, b, c) a, b, c = 1, 2, "test" print(a, b, c) # 解构赋值 print("_____________") x, y = ["hello", "world 阅读全文
posted @ 2023-01-10 15:47 Jenny测试开发 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页