문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top