3

我想在 mochawesome HTML 报告中查看 cy.log() 命令的输出。下面是代码

    /// <reference types="cypress" />

describe("Cypress File Upload", function() {
    it("File Upload test", () => {
        cy.visit('https://the-internet.herokuapp.com/')
        cy.get('a[href="/upload"]').click()
        const file = 'example.json'
        cy.get('#file-upload').click().attachFile(file)
        cy.get('#file-submit').click()
        cy.log(file)
        cy.get('#uploaded-files').contains('example.json', {matchCase: true})
    })
})

生成的 HTML 报告按原样显示 cy.log(file),尽管 example.json 是预期在此处输入图像描述 的 如何查看上述命令的输出?

4

1 回答 1

1

您可以使用addContext。在cypress/support/commands.js中,您必须输入以下代码:

import addContext from 'mochawesome/addContext';
Cypress.Commands.add('addContext', (context) => {
  cy.once('test:after:run', (test) => addContext({ test }, context));
});

之后,您可以在测试中使用命令cy.adContext

cy.get('p').invoke('text').then(($text) => {
  cy.addContext($text);
});
于 2021-01-13T23:52:42.430 回答