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 |
---|---|
JTabbedPaneFixture |
JTabbedPaneFixture.click()
Simulates a user clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.focus()
Gives input focus to this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireFocused()
Asserts that this fixture's
has input focus. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireTabTitles(String... titles)
Asserts that the tabs of this fixture's
have the given titles. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireTitle(Pattern pattern,
Index index)
Asserts that the title of the tab at the given index matches the given regular expression pattern.
|
JTabbedPaneFixture |
JTabbedPaneFixture.requireTitle(String title,
Index index)
Asserts that the title of the tab at the given index matches the given value.
|
JTabbedPaneFixture |
JTabbedPaneFixture.requireToolTip(Pattern pattern)
Asserts that the toolTip in this fixture's
matches the given regular expression
pattern. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireToolTip(String expected)
Asserts that the toolTip in this fixture's
matches the given value. |
JTabbedPaneFixture |
JTabbedPaneFixture.requireVisible()
Asserts that this fixture's
is visible. |
JTabbedPaneFixture |
JTabbedPaneFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
JTabbedPaneFixture |
JTabbedPaneFixture.selectTab(int index)
Simulates a user selecting the tab located at the given index.
|
JTabbedPaneFixture |
JTabbedPaneFixture.selectTab(Pattern pattern)
Simulates a user selecting the tab whose title matches the given regular expression pattern.
|
JTabbedPaneFixture |
JTabbedPaneFixture.selectTab(String title)
Simulates a user selecting the tab whose title matches the given value.
|
JTabbedPaneFixture |
ContainerFixture.tabbedPane()
Returns a
found in this fixture's . |
JTabbedPaneFixture |
ComponentContainerFixture.tabbedPane()
Returns a
found in this fixture's . |
JTabbedPaneFixture |
ContainerFixture.tabbedPane(GenericTypeMatcher<? extends JTabbedPane> matcher)
Finds a
in this fixture's , that matches the
specified search criteria. |
JTabbedPaneFixture |
ComponentContainerFixture.tabbedPane(GenericTypeMatcher<? extends JTabbedPane> matcher)
Finds a
in this fixture's , that matches the
specified search criteria. |
JTabbedPaneFixture |
ContainerFixture.tabbedPane(String name)
Finds a
in this fixture's , which name matches
the specified one. |
JTabbedPaneFixture |
ComponentContainerFixture.tabbedPane(String name)
Finds a
in this fixture's , which name matches
the specified one. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.