使用 cy.log 打印出 Cypress 环境变量
Using cy.log to print out Cypress environment variables
目标:如何打印 Cypress 环境变量?
代码:
cy.log(Cypress.env()); // Error: Argument of type 'ObjectLike' is not assignable to parameter of type 'string'.ts(2345)
我知道我无法打印它,因为 cy.log()
接受 string
而 Cypress.env()
是 ObjectLike
类型,但我不确定还有什么我可以采用的打印方法。
打字错误,输入参数即可
cy.log(Cypress.env() as any)
或使用这种形式.log(message: string, ...args: any[])
cy.log('env', Cypress.env())
或 Cypress.log()
带有选项(options.message
是类型 any
)
Cypress.log({ name: 'env', message: Cypress.env() })
目标:如何打印 Cypress 环境变量?
代码:
cy.log(Cypress.env()); // Error: Argument of type 'ObjectLike' is not assignable to parameter of type 'string'.ts(2345)
我知道我无法打印它,因为 cy.log()
接受 string
而 Cypress.env()
是 ObjectLike
类型,但我不确定还有什么我可以采用的打印方法。
打字错误,输入参数即可
cy.log(Cypress.env() as any)
或使用这种形式.log(message: string, ...args: any[])
cy.log('env', Cypress.env())
或 Cypress.log()
带有选项(options.message
是类型 any
)
Cypress.log({ name: 'env', message: Cypress.env() })