摘要: Fiddle修改返回数据的常用操作步骤: 1. 在fiddle中,找到要拦截的请求,然后在AutoResponder中 点击Add Rule 2. 在Rule Editor中的第二栏选择“Create New Response...”,然后点击Save 3. 点击Save,会弹出一个窗口,在弹窗中选 阅读全文
posted @ 2022-03-14 16:35 明天有盼望 阅读(297) 评论(0) 推荐(0) 编辑
摘要: Python中有.join()和os.path.join()两个函数,具体作用如下: . join(): 连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串 os.path.join(): 将多个路径组合后返回 >>#对序列进行操作(分别使用' ' 、' - ' 阅读全文
posted @ 2022-03-03 11:23 明天有盼望 阅读(237) 评论(0) 推荐(0) 编辑
摘要: import pytest@pytest.fixture()def init(request): str_1 = 'hello 8888' print('第一种方法') str_5 = str_1[::-1] print('第二种方法') str_6 = list(str_1) str_6.reve 阅读全文
posted @ 2022-03-03 11:11 明天有盼望 阅读(1856) 评论(0) 推荐(0) 编辑
摘要: 出现的问题 HTML报表部分内容如下 <li>所有用例: ${TEST_COUNTS,var="total"}</li> <li>成功用例: ${TEST_COUNTS,var="pass"}</li> <li>失败用例: ${TEST_COUNTS,var="fail"}</li> <li>跳过用 阅读全文
posted @ 2022-02-25 14:48 明天有盼望 阅读(1849) 评论(0) 推荐(0) 编辑
摘要: 前提条件: 1).电脑需要安装Fiddler 2).测试手机需要支持Wifi 3).测试手机与电脑需要同一网络 4).所测APP需支持代理 1.Chrome 代理设置: 以chrome77版本为例:设置--高级--系统--打开你的代理服务器设置“,具体设置参考以下截图内容: 代理开关为开:可以抓到包 阅读全文
posted @ 2022-02-24 17:32 明天有盼望 阅读(824) 评论(0) 推荐(0) 编辑
摘要: 正则表达式只针对字符串,进行各种操作的 用途: 1、匹配 - 符合规则的字符串,则认为匹配了。 2、提取 - 提取出符合规则的字符串。 python中通过re模块来处理正则表达式。re模块的常用方法如下: re.match(re规则,字符串):从头开始匹配。从字符串的第一个字符开始匹配,如果第一个字 阅读全文
posted @ 2022-02-10 15:30 明天有盼望 阅读(223) 评论(0) 推荐(0) 编辑
摘要: MyRequests.py #!/usr/bin/env python3# -*- coding:utf-8 -*-import requestsfrom common.MyConf import MyConfimport osfrom common.my_path import Conf_dirc 阅读全文
posted @ 2022-02-07 15:55 明天有盼望 阅读(49) 评论(0) 推荐(0) 编辑
摘要: MyConf.py #!/usr/bin/env python3# -*- coding:utf-8 -*-from configparser import ConfigParserclass MyConf(ConfigParser): def __init__(self,filename): su 阅读全文
posted @ 2022-01-29 13:54 明天有盼望 阅读(33) 评论(0) 推荐(0) 编辑
摘要: mylogger.py (设置日志输出格式) #!/usr/bin/env python3# -*- coding:utf-8 -*-import loggingfrom logging import Loggerfrom common.my_path import Outputs_dirimpor 阅读全文
posted @ 2022-01-27 16:44 明天有盼望 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 资源来源参考:URL http://testingpai.com/article/1615615023407 Faker 一、faker 安装 pip install faker API 文档:https://faker.readthedocs.io/en/master/providers/base 阅读全文
posted @ 2022-01-27 16:35 明天有盼望 阅读(195) 评论(0) 推荐(0) 编辑