Package | Description |
---|---|
org.fest.swing.core |
Building blocks for all FEST-Swing fixtures.
|
org.fest.swing.driver |
Drivers that simulate user input on GUI
s. |
org.fest.swing.fixture |
The power and flexibility of FEST-Swing come from the fixtures in
this package.
|
Modifier and Type | Method and Description |
---|---|
static MouseClickInfo |
MouseClickInfo.button(MouseButton button)
Specifies that the given button should be clicked once.
|
static MouseClickInfo |
MouseClickInfo.leftButton()
Specifies that the left button should be clicked once.
|
static MouseClickInfo |
MouseClickInfo.middleButton()
Specifies that the middle button should be clicked once.
|
static MouseClickInfo |
MouseClickInfo.rightButton()
Specifies that the right button should be clicked once.
|
MouseClickInfo |
MouseClickInfo.times(int newTimes)
Specifies how many times the mouse button should be clicked.
|
Modifier and Type | Method and Description |
---|---|
void |
ComponentDriver.click(Component c,
MouseClickInfo mouseClickInfo)
Simulates a user clicking the given mouse button, the given times on the given
. |
void |
JTreeDriver.clickPath(JTree tree,
String path,
MouseClickInfo mouseClickInfo)
Clicks the given path, expanding parent nodes if necessary.
|
void |
JTreeDriver.clickRow(JTree tree,
int row,
MouseClickInfo mouseClickInfo)
Clicks the given row.
|
Modifier and Type | Method and Description |
---|---|
JTreeRowFixture |
JTreeRowFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's tree node.
|
JTreeFixture |
JTreeFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JOptionPaneFixture |
JOptionPaneFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
MouseInputSimulationFixture |
MouseInputSimulationFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's GUI component.
|
JLabelFixture |
JLabelFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JTreePathFixture |
JTreePathFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's tree node.
|
JTableFixture |
JTableFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JSliderFixture |
JSliderFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JPopupMenuFixture |
JPopupMenuFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JSplitPaneFixture |
JSplitPaneFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JTextComponentFixture |
JTextComponentFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JRadioButtonFixture |
JRadioButtonFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JScrollBarFixture |
JScrollBarFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
FrameFixture |
FrameFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JFileChooserFixture |
JFileChooserFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JPanelFixture |
JPanelFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JButtonFixture |
JButtonFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JToolBarFixture |
JToolBarFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JScrollPaneFixture |
JScrollPaneFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
DialogFixture |
DialogFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JListItemFixture |
JListItemFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's list item.
|
JTableCellFixture |
JTableCellFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's table cell.
|
JListFixture |
JListFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JSpinnerFixture |
JSpinnerFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
GenericComponentFixture<T> |
GenericComponentFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's GUI component.
|
JInternalFrameFixture |
JInternalFrameFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JTableFixture |
JTableFixture.click(TableCell cell,
MouseClickInfo mouseClickInfo)
Simulates a user clicking a cell in this fixture's
, using the specified mouse button
the given number of times. |
JTableHeaderFixture |
JTableHeaderFixture.clickColumn(int index,
MouseClickInfo mouseClickInfo)
Simulates a user clicking the column under the given index, in this fixture's
,
using the given mouse button, the given number of times. |
JTableHeaderFixture |
JTableHeaderFixture.clickColumn(Pattern columnNamePattern,
MouseClickInfo mouseClickInfo)
Simulates a user clicking the column which name matches the given regular expression pattern, in this fixture's
, using the given mouse button, the given number of times. |
JTableHeaderFixture |
JTableHeaderFixture.clickColumn(String columnName,
MouseClickInfo mouseClickInfo)
Simulates a user clicking the column which name matches the given one, in this fixture's
, using the given mouse button, the given number of times. |
JTreeFixture |
JTreeFixture.clickPath(String path,
MouseClickInfo mouseClickInfo)
Clicks the given path, expanding parent nodes if necessary.
|
JTreeFixture |
JTreeFixture.clickRow(int row,
MouseClickInfo mouseClickInfo)
Clicks the given row.
|
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.