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