Zombie.js测试框架,写入文件
我还没有发现任何关于能够使用 Zombie.js 写入文件的信息。
我意识到 js 通常不允许写入文件,但是是否可以将 Node.js 与 Zombie.js 结合起来?
有谁知道是否可以使用 Zombie.js 框架写入文件?
我实际上只是在测试失败时尝试转储 html 页面的内容,因为我不会看到它失败。
I have not found anything yet about being able to write to a file with Zombie.js.
I realize that js doesn't normally allow writing to files, but is it possible to combine Node.js with Zombie.js?
Does anyone know if it's at all possible to write to a file with the Zombie.js framework?
I'm really just attempting to dump the contents of an html page when the test fails, as I won't be around to see it fail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 Zombie.js 是基于 Node.js 构建的,因此您可以按照 @Jim Schubert 的建议使用 Node fs 模块。
手册
Since Zombie.js is built on Node.js, you can use the node fs module as @Jim Schubert suggested.
Manual