调试 webrat 的输出
有什么方法可以查看 webrat 对失败步骤的调试输出吗?
例如,我收到以下错误:
The 'Test User' option was not found in the "user_id" select box (Webrat::NotFoundError)
我想查看 webrat 所看到的 HTML 输出,以找出问题所在。
Are there any ways to see debug output from webrat on failed steps?
For example I get the following error:
The 'Test User' option was not found in the "user_id" select box (Webrat::NotFoundError)
I want to see HTML output that webrat is seeing, to figure out, where is the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我自己想出来了。 Webrat 有
save_and_open_page
方法,它将 HTML 页面保存到tmp/
目录并在浏览器中打开它。Ok, i figured it out myself. Webrat has
save_and_open_page
method, it saves HTML page totmp/
dir and opens it in browser.