我正在尝试编写一个SWTBot测试,在eclipse中打开欢迎页面视图,然后将内容读取/映射到某个对象(不关心是否只有字符串)所以我可以将它与预期文本进行比较,我认为这是一个非常微不足道的问题,我会在互联网上找到例子,但我不能! 有什么帮助吗?
@Test
public void testExpandText() throws Exception {
bot.menu(Constants.HELP_MENU).menu(Constants.WELCOME).click();
welcomePageView = bot.viewByTitle(Constants.WELCOME);
//expandText();
//assertText();
welcomePageView.close();
}
答案 0 :(得分:-1)
似乎欢迎页面的内容是一个网站页面......也许现在不支持SWTBot。
并且,如果您想查看一些示例测试代码,可以尝试使用以下代码打开“透视”菜单。
bot.menu("Window").menu("Open Perspective").menu("Other...").click();
bot.shell("Open Perspective").activate();
bot.table().select("Debug");
//bot.table().getTableItem(2).getText(); //Get the 2nd line text of the list.
bot.button("OK").click();
希望代码对您有用。