gpt4 book ai didi

javascript - 在 Cypress 的测试之间保留动态变量

转载 作者:行者123 更新时间:2023-12-05 01:26:50 28 4
gpt4 key购买 nike

我正在尝试进行 Cypress 测试,我想在输入中设置一个随机数,然后检查随机数是否在另一页中设置正确。我正在使用此函数创建随机数:

function getRandomArbitrary(min, max, decimals) {
return (Math.random() * (max - min) + min).toFixed(decimals);
}

并在 describe 中设置变量,如下所示:

  describe('Reflect changes from X to the Y', () => {
const termCap = getRandomArbitrary(0.01, 0.3, 2);
const termCapFee = getRandomArbitrary(0.01, 0.3, 2);

我目前遇到的问题是变量在我创建的每个不同的 it() 中都会重置。我不知道会发生什么,因为我想在所有测试中保持相同的一致数字。

我试过在 before() 中设置它们,但这也没有用。

有谁知道我应该如何创建变量?

最佳答案

I've tried setting them in a before() but that didn't work either.

before block 应该可以工作。也许 before block 设置不正确?我可以使用以下设置让它工作。

describe("Foo Fighter", function() {
var foo;
before(function () {
foo = getRandomArbitrary(1,10,1);
});

it("Fighting foo 1", function () {
cy.log(foo);
});
it("Fighting foo 2", function () {
cy.log(foo);
});
it("Fighting foo 3", function () {
cy.log(foo);
});
});
function getRandomArbitrary(min, max, decimals) {
return (Math.random() * (max - min) + min).toFixed(decimals);
}

这会产生以下结果,随机数在每个 it block 中保持不变。

Test run

逻辑流程是:

  • describe block 中,声明您的变量。
  • before block 中,使用随机数设置变量。
  • it block 中,使用 set 变量。

编辑:

回答您的评论:

If I set it like you it works fine, but imagine if in the first it you visit google, and in the second it you visit github, the before block will run twice

这里的问题是,当您访问一个新站点时, Cypress 会重新加载整个测试上下文,因此就像您提到的那样,before block 将在每次重新加载测试上下文时再次运行(即每次访问新域时)。

解决这个问题的方法是通过设置另一个首先运行的描述并将变量写入固定装置并在测试中使用这些固定装置来作弊,如下所示:

describe("Before Describe", function(){
const foo = getRandomArbitrary(1,10,1);
it("Setting up test context", function() {
cy.writeFile("cypress/fixtures/test.json", { "foo" : foo});
});
});



describe("Foo Fighter", function() {
it("Fighting foo 1", function () {
cy.visit("https://example.cypress.io");
cy.fixture("test.json").then(kung => {
cy.log(kung.foo);
})
});
it("Fighting foo 2", function () {
cy.visit("https://google.com")
cy.fixture("test.json").then(kung => {
cy.log(kung.foo);
})
});
it("Fighting foo 3", function () {
cy.fixture("test.json").then(kung => {
cy.log(kung.foo);
})
});
});

function getRandomArbitrary(min, max, decimals) {
return (Math.random() * (max - min) + min).toFixed(decimals);
}

这将产生以下结果:

Test two

诚然,这不是构建测试流程的最简洁方法,但是,它会产生您想要的结果。如果您将设置放在与其他测试相同的 describe 中最先出现的 it 中,也应该有效。

关于javascript - 在 Cypress 的测试之间保留动态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70004497/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com