Zombie.js测试框架,写入文件

发布于 2024-11-18 03:25:21 字数 181 浏览 3 评论 0原文

我还没有发现任何关于能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光无声 2024-11-25 03:25:21

由于 Zombie.js 是基于 Node.js 构建的,因此您可以按照 @Jim Schubert 的建议使用 Node fs 模块。

fs.writeFile('message.txt', 'Hello Node', function (err) {
  if (err) throw err;
  console.log('It\'s saved!');
});

手册

Since Zombie.js is built on Node.js, you can use the node fs module as @Jim Schubert suggested.

fs.writeFile('message.txt', 'Hello Node', function (err) {
  if (err) throw err;
  console.log('It\'s saved!');
});

Manual

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文