TestCafe beforeEach钩子-如何执行函数并声明变量

时间:2019-02-01 15:00:32

标签: javascript automated-tests e2e-testing testcafe

我正在使用TestCafe,并正在寻找一种解决方案来在beforeEach挂钩中做两件事: 1.执行功能(每次测试前登录) 2.创建唯一的测试数据

我能够分别实现这两个目标,但不能同时实现这两个目标:

这可以登录用户:

fixture('My Component')
  .beforeEach(login(user, password)
)

这可以为每个测试用例创建新的测试数据:

fixture(`My Component`)
  .beforeEach(async t => {
    randomLastName = faker.name.lastName();
})

但是我还没有找到在单个钩子上实现两者的解决方案。而且,我从文档中了解到,使用两个beforeEach挂钩将导致第一个被覆盖。

我当前的实现是在beforeEach挂钩中执行登录并在每个测试用例中创建测试数据,这比我想要的更为冗长,例如,每个测试用例都包含

test('My Test', async (t) => {
  let randomLastName = faker.name.lastName();
  // ...
}

建议将不胜感激!

1 个答案:

答案 0 :(得分:7)

一种解决方案是在每次测试执行之前使用Test Context准备任何类型的数据上下文

fixture('My Component')
  .beforeEach(async (t) => {
    // login method
   login(user, password);
   // inject test data in the test context
   t.ctx.inputData = {
      randomLastName: faker.name.lastName()
   };
});

test('My Test', async (t) => {
  // read test data from test context
  const inputData = t.ctx.inputData;
  const randomLastName = inputData.randomLastName;
  // ...
}