摘要: fiddler过滤无用图片操作步骤1、在右侧Filters中勾选 Hide if URL contains 2、在 Hide if URL contains 中加入下面一行过滤图片代码 REGEX:(?insx)/[^\?/]*\.(css|ico|jpg|png|gif|bmp|wav|js|jp 阅读全文
posted @ 2019-11-08 15:30 CesareCheung 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: - 在 Fiters 一栏勾选Show only Internet Hosts 及Show only the following Hosts- 然后在下面输入需要保留的域名 阅读全文
posted @ 2019-11-08 15:28 CesareCheung 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Python3+Requests+Excel接口自动化框架图 阅读全文
posted @ 2019-11-01 09:47 CesareCheung 阅读(443) 评论(0) 推荐(0) 编辑
摘要: git config git config命令的作用是配置git的相关信息。 设置用户名:git config --global user.name "name" 设置用户邮箱:git config --global user.email "eamil" 设置用户名:git config user. 阅读全文
posted @ 2019-10-25 15:18 CesareCheung 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 框架整体使用Python3+Requests+Excel:包含对实时token的获取 框架结构图 1、 base runmethond.py runmethond:对不同的请求方式进行封装 2、 data data_config.py data_config:获取excel模块中数据 3、 data 阅读全文
posted @ 2019-10-09 14:11 CesareCheung 阅读(1121) 评论(2) 推荐(0) 编辑
摘要: 发送信息到钉钉群 阅读全文
posted @ 2019-09-03 11:38 CesareCheung 阅读(780) 评论(0) 推荐(0) 编辑
摘要: import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText class SendEmail: """邮件方式发送报告""" global send_user global email_host global password... 阅读全文
posted @ 2019-08-29 17:39 CesareCheung 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 以邮件方式发送测试报告 阅读全文
posted @ 2019-08-25 11:54 CesareCheung 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 根据不同的请求类型(GET/POST)进行接口请求封装 阅读全文
posted @ 2019-08-15 09:49 CesareCheung 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 基于Python+Selenium+Unittest+Ddt+HTMLReport 框架结构: Business:业务相关公共模块,如登录Common:业务无关公共模块,如读取文件PageObject:页面元素封装TestCase:测试用例层TestData:测试数据TestSuite:测试套件br 阅读全文
posted @ 2019-07-05 20:05 CesareCheung 阅读(766) 评论(0) 推荐(1) 编辑