其他分享
首页 > 其他分享> > Cypress系列(64)- 数据驱动策略

Cypress系列(64)- 数据驱动策略

作者:互联网

如果想从头学起Cypress,可以看下面的系列文章哦

https://www.cnblogs.com/poloyy/category/1768839.html

 

前言

 

策略一:数据通过 JS 的方式创建

describe('测试数据放在前置条件里', function () {
    let testDatas = testDatas = [
        {'name': 'yy', 'password': 'helloqa'},
        {'name': 'age', 'password': 'helloqa2'}]

    // 循环生成测试用例
    for (const data in testDatas) {
        it(`测试外部数据${data}`, function () {
            cy.log(testDatas[data].name, testDatas[data].password)
        });
    }
})

 

策略二:使用 fixtures(推荐)

直接看我这篇文章就好了:https://www.cnblogs.com/poloyy/p/13714430.html

 

策略三:数据保存在自定义文件中

// 导入数据文件 example.json,并保存在 testData 变量中
import testData from '../../data/example.json'

describe('数据驱动的栗子', function () {

    describe('数据保存在自定义文件中', function () {
        for (const data in testData) {
            it(`测试外部数据${data}`, function () {
                cy.log(testData[data].name, testData[data].body)
            });
        }
    })
})

 

测试结果

 

标签:function,name,testDatas,数据,testData,Cypress,64,驱动,data
来源: https://blog.51cto.com/u_12020737/2838196