- Cypress教程
- Cypress - 主页
- Cypress - 简介
- Cypress - 架构和环境设置
- Cypress - 测试运行者
- Cypress - 构建第一个测试
- Cypress - 支持的浏览器
- Cypress - 基本命令
- Cypress - 变量
- Cypress - 别名
- Cypress - 定位器
- Cypress - 断言
- Cypress - 文本验证
- Cypress - 异步Behave
- Cypress - 使用 XHR
- Cypress - jQuery
- Cypress - 复选框
- Cypress - 标签
- Cypress - 下拉菜单
- Cypress - 警报
- Cypress - 子窗口
- Cypress - 隐藏元素
- Cypress - 框架
- Cypress - 网络表
- Cypress - 鼠标操作
- Cypress - cookie
- Cypress - 获取和发布
- Cypress - 文件上传
- Cypress - 数据驱动测试
- Cypress - 提示弹窗
- Cypress - 仪表板
- Cypress - 屏幕截图和视频
- Cypress - 调试
- Cypress - 自定义命令
- Cypress - 装置
- Cypress - 环境变量
- Cypress - 挂钩
- Cypress - JSON 文件的配置
- Cypress - 报告
- Cypress - 插件
- Cypress - GitHub
- Cypress有用资源
- Cypress - 快速指南
- Cypress - 有用的资源
- Cypress - 讨论
Cypress - 自定义命令
Cypress自定义命令由用户描述,而不是Cypress的默认命令。这些自定义命令用于创建在自动化流程中重复的测试步骤。
我们可以添加并覆盖已经存在的命令。它们应放置在 Cypress 项目中 support 文件夹内的 Commands.js 文件中。
句法
Cypress 中的自定义命令的语法如下 -
Cypress.Commands.add(function-name, func) Cypress.Commands.add(function-name, opts, func) Cypress.Commands.overwrite(function-name, func)
这里,
function-name是要添加/覆盖的命令。
func是获取传递给命令的参数的函数传递。
opts用于传递一个选项来描述自定义命令的隐式特征。它还用于确定如何处理先前生成的主题(仅适用于 Cypress.Commands.add()),选项的默认值为 false。选项 prevSubject 接受false来忽略先前的主题,接受 true 来接受先前的主题,并接受可选的开始链或利用预先存在的链。选项接受字符串、数组或布尔值。
自定义命令的实现
下面是commands.js中自定义命令的实现
Cypress.Commands.add("userInput", (searchTxt) => { //to input search text in Google and perform search cy.get("input[type='text']").type(searchTxt); cy.contains("Google Search").click(); });
实际测试实施
下面给出的是使用自定义命令在 Cypress 中实际测试的实现 -
describe('Tutorialspoint Test', function () { // test case it('Test Case 6', function (){ // launch the application cy.visit("https://www.google.com/"); //custom parent command cy.userInput('Java') }); });
执行结果
输出如下 -
输出日志显示自定义命令 – userInput(具有 get、type 和 click 命令)正在执行。
建议自定义命令不要太长。它应该简短,因为在自定义命令中添加太多操作往往会显示执行情况。