使用cy.log打印出Cypress环境变量
目标:如何打印 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
,但我不确定可以采取什么其他方法来打印它。
Goal: How can I print Cypress environment variables?
Code:
cy.log(Cypress.env()); // Error: Argument of type 'ObjectLike' is not assignable to parameter of type 'string'.ts(2345)
I understand I can't print it because cy.log()
takes in a string
and Cypress.env()
is of type ObjectLike
, but I'm not sure what other approach I can take to print it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是打字稿错误,因此您可以键入参数
或使用以下形式
.log(message: string, ...args: any[])
或
Cypress.log()
带选项(options.message
类型为any
)It's a typescript error, so you can type the parameter
or use this form
.log(message: string, ...args: any[])
or
Cypress.log()
with options (options.message
is typeany
)