gpt4 book ai didi

javascript - 在 Cypress 中多次拦截同一个 API 调用

转载 作者:行者123 更新时间:2023-12-05 00:24:46 27 4
gpt4 key购买 nike

是否可以使用cy.intercept在同一个测试中多次拦截同一个 API 调用?我尝试了以下方法:

cy.intercept({ pathname: "/url", method: "POST" }).as("call1")
// ... some logic
cy.wait("@call1")

// ... some logic

cy.intercept({ pathname: "/url", method: "POST" }).as("call2")
// ... some logic
cy.wait("@call2")
我希望 cy.wait("@call2")将等待第二次调用 API。但是,第二个 cy.wait将立即继续,因为第一个 API 调用与第二个相同。

最佳答案

当您设置相同的拦截时,第一个拦截将获取所有调用。但是您可以多次等待第一个别名。
这是一个(相当)简单的插图
规范

Cypress.config('defaultCommandTimeout', 10); // low timeout
// makes the gets depend on the waits
// for success

it('never fires @call2',()=>{

cy.intercept({ pathname: "/posts", method: "POST" }).as("call1")
cy.intercept({ pathname: "/posts", method: "POST" }).as("call2")

cy.visit('../app/intercept-identical.html')

cy.wait('@call1') // call1 fires
cy.get('div#1').should('have.text', '201')

cy.wait('@call2') // call2 never fires
cy.wait('@call1') // call1 fires a second time
cy.get('div#2').should('have.text', '201')

})
应用
<body>
<div id="1"></div>
<div id="2"></div>
<script>

setTimeout(() => {
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
body: JSON.stringify({ title: 'foo', body: 'bar', userId: 1 }),
headers: { 'Content-type': 'application/json; charset=UTF-8' },
}).then(response => {
document.getElementById('1').innerText = response.status;
})
}, 500)

setTimeout(() => {
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
body: JSON.stringify({ title: 'foo', body: 'bar', userId: 2 }),
headers: { 'Content-type': 'application/json; charset=UTF-8' },
}).then(response => {
document.getElementById('2').innerText = response.status;
})
}, 1000)

</script>
</body>
您可以在 Cypress 日志中看到它,


命令
称呼#
出现(橙色标签)


等待
@call1
1

等待
@call2

等待
@call1
2

关于javascript - 在 Cypress 中多次拦截同一个 API 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66765452/

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