摘要: 微信首页:https://weixin.qq.com/ 微信公众平台:https://mp.weixin.qq.com/ 公众号(实际为小程序):https://mp.weixin.qq.com/cgi-bin/wx 微信开放社区:https://developers.weixin.qq.com/ 阅读全文
posted @ 2024-04-28 20:54 RandolphChen 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 测试策略 基准测试 狭义:单用户测试 广义:建立基准线;调整变量,对比基准 提供参考指标用 负载测试 逐步增加负载,寻找满足指标要求下的最大负载量。 稳定性测试 压力测试 并发测试 测试指标 阅读全文
posted @ 2024-04-24 16:16 RandolphChen 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 相关资料 Selenium 官网 Selenium 文档 Selenium Python接口文档 如果要查看其他语言的Selenium接口文档,见 下载Selenium W3C WebDriver规范 Web驱动器 可以访问 Selenium官方Web驱动器生态查看各主流浏览器的Web驱动器下载 C 阅读全文
posted @ 2024-04-11 15:14 RandolphChen 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Pytest官方网站 文档集合 Documentation (Get Started 入门)[] How-to Guides 使用指南 Reference Guides 参考指南 Explanation 解释 Get Started 1-3 Basic Operation Install Pytes 阅读全文
posted @ 2024-04-01 14:52 RandolphChen 阅读(1) 评论(0) 推荐(0) 编辑
摘要: v1:不使用任何设计模式和单元测试框架 v2:使用UnittestPytest管理用例 v3:方法封装 v4:PO分层 v5:PO优化 v6:深入封装 阅读全文
posted @ 2024-04-01 14:20 RandolphChen 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1 环境配置 from selenium import webdriver driver = webdriver.Chrome() URL = "http://www.baidu.com" driver.get(URL) driver.maximize_window() driver.implici 阅读全文
posted @ 2024-04-01 14:20 RandolphChen 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、质量模型 1. 功能性:功能数量、功能正确实现、错误处理情况 2. 性能 3. 兼容性:浏览器兼容性:谷歌,火狐,Edge 4. 易用性:简洁、友好、流畅、美观 5. 可靠性 6. 安全性 7. 可移植性 8. 可维护性 *. 界面布局 a. 布局与UI原型一致 b. 图片与文字准确与UI原型无 阅读全文
posted @ 2024-04-01 14:20 RandolphChen 阅读(2) 评论(0) 推荐(0) 编辑