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

Examples of org.eclipse.swtbot.swt.finder.widgets.SWTBotCombo


   * @return a {@link SWTBotCombo} with the specified <code>label</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxWithLabel(String label, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withLabel(label));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here


   * @return a {@link SWTBotCombo} with the specified <code>text</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBox(String text, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withText(text));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>key/value</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxWithId(String key, String value, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withId(key, value));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>value</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxWithId(String value, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withId(value));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxInGroup(String inGroup, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), inGroup(inGroup));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>none</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBox(int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>label</code> with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxWithLabelInGroup(String label, String inGroup, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withLabel(label), inGroup(inGroup));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>text</code> with the specified <code>inGroup</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxInGroup(String text, String inGroup, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withText(text), inGroup(inGroup));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>label</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBoxWithLabel(String label, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withLabel(label));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

   * @return a {@link SWTBotCombo} with the specified <code>text</code>.
   */
  @SuppressWarnings("unchecked")
  public SWTBotCombo comboBox(String text, int index) {
    Matcher matcher = allOf(widgetOfType(Combo.class), withText(text));
    return new SWTBotCombo((Combo) widget(matcher, index), matcher);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.swtbot.swt.finder.widgets.SWTBotCombo

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.