有没有一些基于AWT的测试GUI的框架?
有很多框架支持基于 Swing 的 Java GUI 测试,但我找不到任何支持 AWT GUI 测试的开源框架。该框架应该支持脚本编写(而不仅仅是记录用户操作)。有这样的框架或者工具吗?
There is a lot of frameworks support testing Java GUI based on Swing but I can't find any open-source framework supporting AWT GUI testing. The framework should support script writing (not mere recording of user actions). Is there such framework or tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能可以使用 awt.Robot 自己编写这样一个工具。
同时,Swing 和 AWT 可以比以前更好地混合,您应该考虑重写您的 UI,或者至少基于 Swing 进行未来的开发。
You likely can use awt.Robot to write yourself such a tool.
Also meanwhile Swing and AWT can much better be mixed than in older times, you should consider to rewrite your UI, or at least do futur development Swing based.
Maveryx 是一个很好的 Java GUI 测试开源框架。
它有很多优点:
毛罗
a good open source framework for Java GUI testing is Maveryx.
It has many good point:
Mauro