如何计算 Eclipse RCP 应用程序中打开的编辑器实例的数量?

发布于 2024-08-26 11:27:15 字数 125 浏览 4 评论 0原文

我开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界如花海般美丽 2024-09-02 11:27:15

关于 SWTBot 的书籍 (p 34),应该是

_bot.editors().size()

但这适用于所有打开的编辑器,因此您可能需要过滤该列表(例如基于编辑器的标题)以计算正确的实例数。

From the example of this book on SWTBot (p 34), it should be

_bot.editors().size()

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文