Package org.fest.swing.finder

Examples of org.fest.swing.finder.FrameFinder


    assert fixture != null;
    return fixture.menuItem(new QueryMatcher<JMenuItem>(JMenuItem.class, this));
  }
 
  public FrameFixture findFrame() {
    FrameFinder finder = WindowFinder.findFrame(new QueryMatcher<Frame>(Frame.class, this));
    if (timeoutInSeconds != null) {
      finder = finder.withTimeout(timeoutInSeconds.intValue(), TimeUnit.SECONDS);
    }
    return finder.using(TestUtils.getRobot());
  }
View Full Code Here

TOP

Related Classes of org.fest.swing.finder.FrameFinder

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.