Web应用程序测试框架建议
有人对 Web 应用程序测试框架有丰富的经验吗?我们正在为用 C#、ASP.NET 等编写的应用程序选择一个框架,但框架可以是任何框架(当然,除非选择一个用 C# 编写的框架有某种帮助)。
该应用程序是分布式的。我们想要的(理想情况下)是:
- 能够从测试单个组件(〜单元测试)扩展到逐渐增大的部件,再到整个系统。
- 可以收集带有时间戳的日志、测量值等,并帮助在问题发生时放大问题的范围。
- 不同技能水平的开发人员可以轻松编写脚本。
Anyone have good experience with a web application testing framework? We are in process of selecting one for our application written in C#, ASP.NET etc., but the framework can be anything (unless, of course, choosing one written in C# helps somehow).
The application is distributed. What we would like (ideally) is:
- Something that will scale from testing individual components (~unit tests), to incrementally larger parts, to the whole system.
- Something that will collect time stamped logs, measurements etc. and help zoom in on problems as they occur.
- Easily scriptable by developers of varying skill levels.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过在 Visual Studio 本身中使用 Web 测试框架?它可以满足您的大部分需求,并且适合您的开发环境。您还可以添加负载测试。
虽然 Web 测试不测试 javascript,但它们将确保每个页面都能正常工作。
Have you tried using the web testing framework in Visual Studio itself. That does a lot of what you need and sits right in your development environment. You also have the addition of load testing as well.
While web tests do not test javascript, they will make sure that each page works correctly.