2

我正在尝试编写一个 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();
}
4

1 回答 1

-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();

希望代码对你有用。

于 2013-12-23T07:08:16.653 回答