我正在轮询任务以进行异步rest调用,如何从此赛普拉斯自定义函数返回taskStatus的值。我想在我的规格文件中使用此值。这是正确的方法吗?
**Cypress.Commands.add("pollTask", (TASK_URI,token) => {
// const regex = /Ok|Error|Warning/mg;
var taskStatus =''
cy.log(" *Task_URI : " + TASK_URI)
cy.log(" *X-Auth-token : " + token)
cy.server()
var NEWURL = Cypress.config().baseUrl + TASK_URI
cy.request({
method: 'GET',
url: NEWURL,
failOnStatusCode: false,
headers: {
'x-auth-token': token
}
}).as('fetchTaskDetails')
cy.log("local: " + token)
cy.get('@fetchTaskDetails').then(function (response) {
taskStatus = response.body.task.status
cy.log('task status: ' + taskStatus)
expect(taskStatus).to.match(regex)
})
return taskStatus
})**
答案 0 :(得分:0)
您必须返回承诺。这是赛普拉斯自定义命令文档中的简单获取/设置example。
根据您的情况,您可以这样返回taskStatus
:
Cypress.Commands.add("pollTask", (TASK_URI,token) => {
const regex = /Ok|Error|Warning/mg;
// var taskStatus =''
cy.log(" *Task_URI : " + TASK_URI)
cy.log(" *X-Auth-token : " + token)
// cy.server() --server() is not required with cy.request()
var NEWURL = Cypress.config().baseUrl + TASK_URI
cy.request({
method: 'GET',
url: NEWURL,
failOnStatusCode: false,
headers: {
'x-auth-token': token
}
}).as('fetchTaskDetails');
cy.log("local: " + token);
cy.get('@fetchTaskDetails').then(function (response) {
const taskStatus = response.body.task.status;
cy.log('task status: ' + taskStatus);
expect(taskStatus).to.match(regex);
cy.wrap(taskStatus); // --this is a promise
});
// return taskStatus --not a promise
})
您将可以使用then()
在测试中获得taskStatus:
cy.pollTask(TASK_URI, token).then(taskStatus => {
// do something with taskStatus
});