Package | Description |
---|---|
org.fest.swing.fixture |
The power and flexibility of FEST-Swing come from the fixtures in
this package.
|
Modifier and Type | Method and Description |
---|---|
JToggleButtonFixture |
JToggleButtonFixture.check()
Checks (or selects) this fixture's
only it is not already checked. |
JToggleButtonFixture |
JToggleButtonFixture.click()
Simulates a user clicking this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.focus()
Gives input focus to this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
JToggleButtonFixture |
JToggleButtonFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
JToggleButtonFixture |
JToggleButtonFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
JToggleButtonFixture |
JToggleButtonFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
JToggleButtonFixture |
JToggleButtonFixture.requireFocused()
Asserts that this fixture's
has input focus. |
JToggleButtonFixture |
JToggleButtonFixture.requireNotSelected()
Verifies that this fixture's
is not selected. |
JToggleButtonFixture |
JToggleButtonFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
JToggleButtonFixture |
JToggleButtonFixture.requireSelected()
Verifies that this fixture's
is selected. |
JToggleButtonFixture |
JToggleButtonFixture.requireText(Pattern pattern)
Asserts that the text of this fixture's
matches the given regular expression
pattern. |
JToggleButtonFixture |
JToggleButtonFixture.requireText(String expected)
Asserts that the text of this fixture's
matches the specified value. |
JToggleButtonFixture |
JToggleButtonFixture.requireToolTip(Pattern pattern)
Asserts that the toolTip in this fixture's
matches the given regular expression
pattern. |
JToggleButtonFixture |
JToggleButtonFixture.requireToolTip(String expected)
Asserts that the toolTip in this fixture's
matches the given value. |
JToggleButtonFixture |
JToggleButtonFixture.requireVisible()
Asserts that this fixture's
is visible. |
JToggleButtonFixture |
JToggleButtonFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
JToggleButtonFixture |
ContainerFixture.toggleButton()
Returns a
found in this fixture's . |
JToggleButtonFixture |
ComponentContainerFixture.toggleButton()
Returns a
found in this fixture's . |
JToggleButtonFixture |
ContainerFixture.toggleButton(GenericTypeMatcher<? extends JToggleButton> matcher)
Finds a
in this fixture's , that matches the
specified search criteria. |
JToggleButtonFixture |
ComponentContainerFixture.toggleButton(GenericTypeMatcher<? extends JToggleButton> matcher)
Finds a
in this fixture's , that matches the
specified search criteria. |
JToggleButtonFixture |
ContainerFixture.toggleButton(String name)
Finds a
in this fixture's , which name matches
the specified one. |
JToggleButtonFixture |
ComponentContainerFixture.toggleButton(String name)
Finds a
in this fixture's , which name matches
the specified one. |
JToggleButtonFixture |
JToggleButtonFixture.uncheck()
Unchecks this fixture's
only if it is checked. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.