Uses of Class
org.fest.swing.fixture.JComboBoxFixture

Packages that use JComboBoxFixture
org.fest.swing.fixture The power and flexibility of FEST-Swing come from the fixtures in this package. 
 

Uses of JComboBoxFixture in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture that return JComboBoxFixture
 JComboBoxFixture JComboBoxFixture.cellReader(JComboBoxCellReader cellReader)
          Updates the implementation of JComboBoxCellReader to use when comparing internal values of this fixture's JComboBox and the values expected in a test.
 JComboBoxFixture JComboBoxFixture.clearSelection()
          Clears the selection in this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.click()
          Simulates a user clicking this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.click(MouseClickInfo mouseClickInfo)
          Simulates a user clicking this fixture's JComboBox.
 JComboBoxFixture ContainerFixture.comboBox()
          Returns a JComboBox found in this fixture's Container.
 JComboBoxFixture ComponentContainerFixture.comboBox()
          Returns a JComboBox found in this fixture's Container.
 JComboBoxFixture ContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
          Finds a JComboBox in this fixture's Container, that matches the specified search criteria.
 JComboBoxFixture ComponentContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
          Finds a JComboBox in this fixture's Container, that matches the specified search criteria.
 JComboBoxFixture ContainerFixture.comboBox(String name)
          Finds a JComboBox in this fixture's Container, which name matches the specified one.
 JComboBoxFixture ComponentContainerFixture.comboBox(String name)
          Finds a JComboBox in this fixture's Container, which name matches the specified one.
 JComboBoxFixture JComboBoxFixture.doubleClick()
          Simulates a user double-clicking this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.enterText(String text)
          Simulates a user entering the specified text in this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.focus()
          Gives input focus to this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
          Simulates a user pressing given key with the given modifiers on this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.pressAndReleaseKeys(int... keyCodes)
          Simulates a user pressing and releasing the given keys on this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.pressKey(int keyCode)
          Simulates a user pressing the given key on this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.releaseKey(int keyCode)
          Simulates a user releasing the given key on this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.replaceText(String text)
          Simulates a user entering the specified text in the JComboBox, replacing any text.
 JComboBoxFixture JComboBoxFixture.requireDisabled()
          Asserts that this fixture's JComboBox is disabled.
 JComboBoxFixture JComboBoxFixture.requireEditable()
          Asserts that this fixture's JComboBox is editable.
 JComboBoxFixture JComboBoxFixture.requireEnabled()
          Asserts that this fixture's JComboBox is enabled.
 JComboBoxFixture JComboBoxFixture.requireEnabled(Timeout timeout)
          Asserts that this fixture's JComboBox is enabled.
 JComboBoxFixture JComboBoxFixture.requireFocused()
          Asserts that this fixture's JComboBox has input focus.
 JComboBoxFixture JComboBoxFixture.requireItemCount(int expected)
          Verifies that this fixture's JComboBox has the expected number of items
 JComboBoxFixture JComboBoxFixture.requireNoSelection()
          Verifies that this fixture's JComboBox does not have any selection.
 JComboBoxFixture JComboBoxFixture.requireNotEditable()
          Asserts that this fixture's JComboBox is not editable.
 JComboBoxFixture JComboBoxFixture.requireNotVisible()
          Asserts that this fixture's JComboBox is not visible.
 JComboBoxFixture JComboBoxFixture.requireSelection(int index)
          Verifies that the index of the selected item in this fixture's JComboBox is equal to the given value.
 JComboBoxFixture JComboBoxFixture.requireSelection(Pattern pattern)
          Verifies that the String representation of the selected item in this fixture's JComboBox matches the given regular expression pattern.
 JComboBoxFixture JComboBoxFixture.requireSelection(String value)
          Verifies that the String representation of the selected item in this fixture's JComboBox matches the given text.
 JComboBoxFixture JComboBoxFixture.requireToolTip(Pattern pattern)
          Asserts that the toolTip in this fixture's JComboBox matches the given regular expression pattern.
 JComboBoxFixture JComboBoxFixture.requireToolTip(String expected)
          Asserts that the toolTip in this fixture's JComboBox matches the given value.
 JComboBoxFixture JComboBoxFixture.requireVisible()
          Asserts that this fixture's JComboBox is visible.
 JComboBoxFixture JComboBoxFixture.rightClick()
          Simulates a user right-clicking this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.selectAllText()
          Simulates a user selecting the text in the JComboBox.
 JComboBoxFixture JComboBoxFixture.selectItem(int index)
          Simulates a user selecting an item in this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.selectItem(Pattern pattern)
          Simulates a user selecting an item in this fixture's JComboBox.
 JComboBoxFixture JComboBoxFixture.selectItem(String text)
          Simulates a user selecting an item in this fixture's JComboBox.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.