如何计算 Eclipse RCP 应用程序中打开的编辑器实例的数量?
我开始使用 swtbot 来测试我最近的 eclipse rcp 项目。在我的应用程序中,特定的编辑器被打开多次,并且想要计算编辑器打开的频率。
我怎样才能使用 swtbot 做到这一点?
谢谢! :-)
I'm beginning to use the swtbot to test my reccent eclipse rcp projekt. A specific editor is opened multiple times in my application and want to count how often the editor is opened.
How can i do that using swtbot?
Thanks! :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从关于 SWTBot 的书籍 (p 34),应该是
但这适用于所有打开的编辑器,因此您可能需要过滤该列表(例如基于编辑器的标题)以计算正确的实例数。
From the example of this book on SWTBot (p 34), it should be
But that is for all the opened editors, so you may need to filter that list (based on the title of the editor for instance) to compute the right number of instances.