是否可以在 cypress js 中多次点击单个 api

发布于 2025-01-11 10:37:17 字数 68 浏览 0 评论 0原文

例如,我有 api“localhost:4000/api/register”,我想在单个测试用例中点击此 api 10 次

For Example, I have api "localhost:4000/api/register" i want to hit this api 10 times in single test case

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒儿 2025-01-18 10:37:17

使用lodash方法Cypress._.times()

示例:

Cypress._.times(10, (k) => {
  it(`register ${k + 1} times`, () => {
    // here the test
  })
})

Use lodash method Cypress._.times()

Example:

Cypress._.times(10, (k) => {
  it(`register ${k + 1} times`, () => {
    // here the test
  })
})
人│生佛魔见 2025-01-18 10:37:17

你也可以喜欢这个,
这是我使用的示例之一,

const count = 10;
static pollAndWait(count) {
        
        cy.testNetwork().then((response) => {
            expect(response.status).to.eq(200);

            if (response.body.resultSizeEstimate > 0  || count == 0) {
                return;
            }
            else {
               this.testNetwork(--count);
            }
        });
    }

You can like this also,
This is sample one which I used,

const count = 10;
static pollAndWait(count) {
        
        cy.testNetwork().then((response) => {
            expect(response.status).to.eq(200);

            if (response.body.resultSizeEstimate > 0  || count == 0) {
                return;
            }
            else {
               this.testNetwork(--count);
            }
        });
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文