Package org.eclipse.swtbot.swt.finder.widgets

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarToggleButton.select()


    SWTBotShell commitDialog = bot.shell(UIText.CommitDialog_CommitChanges);
    SWTBotToolbarToggleButton showUntracked = commitDialog.bot()
        .toolbarToggleButtonWithTooltip(
            UIText.CommitDialog_ShowUntrackedFiles);
    if (!showUntracked.isChecked())
      showUntracked.select();

    SWTBotTree tree = commitDialog.bot().tree();
    assertEquals("Wrong row count", 4, tree.rowCount());
    assertTreeLineContent(tree, 0, "GeneralProject/.project");
    assertTreeLineContent(tree, 1, "GeneralProject/folder/test.txt");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.