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 |
---|---|
JLabelFixture |
JLabelFixture.click()
Simulates a user clicking this fixture's
. |
JLabelFixture |
JLabelFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
JLabelFixture |
JLabelFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JLabelFixture |
JLabelFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
JLabelFixture |
JLabelFixture.focus()
Gives input focus to this fixture's
. |
JLabelFixture |
ContainerFixture.label()
|
JLabelFixture |
ComponentContainerFixture.label()
|
JLabelFixture |
ContainerFixture.label(GenericTypeMatcher<? extends JLabel> matcher)
|
JLabelFixture |
ComponentContainerFixture.label(GenericTypeMatcher<? extends JLabel> matcher)
|
JLabelFixture |
ContainerFixture.label(String name)
|
JLabelFixture |
ComponentContainerFixture.label(String name)
|
JLabelFixture |
JLabelFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
JLabelFixture |
JLabelFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
JLabelFixture |
JLabelFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
JLabelFixture |
JLabelFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
JLabelFixture |
JLabelFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
JLabelFixture |
JLabelFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
JLabelFixture |
JLabelFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
JLabelFixture |
JLabelFixture.requireFocused()
Asserts that this fixture's
has input focus. |
JLabelFixture |
JLabelFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
JLabelFixture |
JLabelFixture.requireText(Pattern pattern)
Asserts that the text of this fixture's
matches the given regular expression pattern. |
JLabelFixture |
JLabelFixture.requireText(String expected)
Asserts that the text of this fixture's
is equal to the specified String . |
JLabelFixture |
JLabelFixture.requireToolTip(Pattern pattern)
Asserts that the toolTip in this fixture's
matches the given regular expression
pattern. |
JLabelFixture |
JLabelFixture.requireToolTip(String expected)
Asserts that the toolTip in this fixture's
matches the given value. |
JLabelFixture |
JLabelFixture.requireVisible()
Asserts that this fixture's
is visible. |
JLabelFixture |
JLabelFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.