Watir,我如何获取运行测试脚本后显示的错误并将其放在文件中
我对 Watir 和运行脚本很陌生。只是想问我如何获取或提取 Scite 显示在左侧面板上的错误消息并将其导入到文本文件中?或者真的可以做到吗?谢谢。
Im new to watir and running scripts from it. Just want to ask if how can I get or extract the error messages Scite displays on the left panel and import it to a textfile? or is it really possible to do? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定你会如何从 Scite 执行此操作,但如果你从命令行执行 Watir 脚本,你可以将输出重定向到文件:
如果你使用像 RSpec,有很多用于将测试结果存储在文件中的选项。
I am not sure how would you do it from Scite, but if you execute Watir script from command line, you can redirect output to file:
If you use test framework like RSpec, there are a lot of options for storing test results in files.
在 Scite 中,单击输出框架,按 Ctrl-A(选择全部)、Ctrl-C(复制),然后粘贴到您喜欢的每个应用程序(例如记事本)中。
我同意 Zeljko 的观点,你应该使用像 rspec 或 testunit 这样的好的框架。祝你好运。
From Scite, you click in the output frame, Ctrl-A (to select all), Ctrl-C (to copy), then paste into what every application you like such as notepad.
I agree with Zeljko, you should use a good framework like rspec or testunit. Goodluck.