在 Eclipse 3.7 RCP 应用程序中,我想通过 id 获取默认透视切换器按钮,用于 SWTBot/单元测试,以解决此问题:
assertNotNull("PerspectiveBar not visisble", bot.toolbarButtonWithTooltip("Perspektive öffnen"));
如何找出可以使用的按钮的 id
assertNotNull("PerspectiveBar not visisble", bot.toolbarButtonWithId("somekey", "someid"));
或者:是否有更好的(独立于国际化)方法来做到这一点,可以自己设置这个按钮的键/ID吗?
谢谢。