如何在Cypress中动态生成测试用例?

2022-03-13 00:00:00 javascript cypress

我在存储Cypress测试所需的测试数据时有一个JSON文件,但我想根据对象键/值的内容动态生成特定的it块(不是每个对象都有相同的值或需要执行相同的步骤)。

例如,如果我有以下testData对象:

[
    {
        "name": "Do Something",
        "type": "A",
        
    },
    {
        "name": "Do Something",
        "type": "B",
        
    },
    {
        "name": "Do Something",
        "type": "C",
        
    },
]

并非所有测试的type都相同,因此需要调用不同的测试才能运行。

在Cypress中实现这一点的最佳方式是什么?是否有不涉及If/Else块的方法?


解决方案

Cypress Real World App,a payment application to demonstrate real-world usage of Cypress testing methods, patterns, and workflows

有3个事务提要,每个事务提要都在此规范中进行了全面测试: https://github.com/cypress-io/cypress-realworld-app/blob/develop/cypress/tests/ui/transaction-feeds.spec.ts

相关文章