Cypress 命令行操作
2020-06-10 本文已影响0人
BestFei
it('execute a system command', function() {
// so you can take actions necessary for your test outside the scope of Cypress.
cy.exec('echo Best Fei')
.its('stdout').should('contain', 'Best Fei')
// we can use Cypress.platform string to select appropriate command
cy.log(`Platform ${Cypress.platform} architecture ${Cypress.arch}`)
})
