Package org.fest.swing.core

Examples of org.fest.swing.core.ComponentMatcher


    this.robot = robot;
    this.target = target;
  }

  @Nonnull JMenuItem menuItemWithPath(@Nonnull String...path) {
    ComponentMatcher m = new JMenuItemMatcher(path);
    Component item = robot.finder().find(target, m);
    assertThat(item).as(format(item)).isInstanceOf(JMenuItem.class);
    return (JMenuItem)item;
  }
View Full Code Here


    this.robot = robot;
    this.target = target;
  }

  JMenuItem menuItemWithPath(String...path) {
    ComponentMatcher m = new JMenuItemMatcher(path);
    Component item = robot.finder().find(target, m);
    assertThat(item).as(format(item)).isInstanceOf(JMenuItem.class);
    return (JMenuItem)item;
  }
View Full Code Here

TOP

Related Classes of org.fest.swing.core.ComponentMatcher

Copyright © 2018 www.massapicom. 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.