Patrick
Patrick

Reputation: 585

How to count the number of open editor instances in an Eclipse RCP Application?

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! :-)

Upvotes: 1

Views: 330

Answers (1)

VonC
VonC

Reputation: 1328122

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.

Upvotes: 1

Related Questions