作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下工作代码来记录响应。现在,试图找出一种记录请求的方法。我们如何记录它?它只是返回未定义。
我试图在 cy.request 上设置 log=true,但它只在浏览器控制台上记录。最好写入文件。
it('Query Endpoint', () => {
request = cy.request(
{
method: 'POST',
url: '/api/service',
auth: {
username: Cypress.env('username'),
password: Cypress.env('password')
},
headers: {
'Content-Type': 'application/json',
},
body: {},
log: true
})
.should((response) => {
cy.log(request.body) // <-- how can you log the request?
cy.writeFile('cypress/responses/api-service.json', request.body) // <-- how can you log the request?
expect(response.status).to.eq(200)
cy.writeFile('cypress/responses/api-service.json', response.body)
})
})
感谢任何帮助。
最佳答案
您可能需要使用 .then
而不是 should
并且 request
should resolve inside promise。它正在 fixture 文件夹中为我写一个文件。但在答案中,我保留了与您问题中给出的相同的 path
。
it('Query Endpoint', () => {
cy.request(
{
method: 'POST',
url: '/api/service',
auth: {
username: Cypress.env('username'),
password: Cypress.env('password')
},
headers: {
'Content-Type': 'application/json',
},
body: {}
})
.then((request) => {
const someRequest = JSON.stringify(request);
cy.writeFile('cypress/fixtures/api-service.json', someRequest)
//...rest of the code
})
})
关于javascript - 如何将 cypress.io、cy.request 记录到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58180524/
我是一名优秀的程序员,十分优秀!