Package org.eclipse.swtbot.swt.finder.waits

Examples of org.eclipse.swtbot.swt.finder.waits.WaitForWidgetInParent


   * @param matcher the matcher used to match widgets.
   * @param parentWidget the parent widget to search for a given widget.
   * @return a list of widgets that match the matcher.
   */
  public java.util.List<? extends Widget> widgets(Matcher<?> matcher, Widget parentWidget) {
    WaitForWidgetInParent waitForWidget = waitForWidget(matcher, parentWidget);
    waitUntilWidgetAppears(waitForWidget);
    return waitForWidget.getWidgets();
  }
View Full Code Here


   * @param parentWidget the parent widget to search for a given widget.
   * @param index the index of the widget, incase the matcher finds multiple widgets
   * @return the first widget that matchs the matcher.
   */
  public Widget widget(Matcher<?> matcher, Widget parentWidget, int index) {
    WaitForWidgetInParent waitForWidget = waitForWidget(matcher, parentWidget);
    waitUntilWidgetAppears(waitForWidget);
    return waitForWidget.get(index);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.swtbot.swt.finder.waits.WaitForWidgetInParent

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.