Package | Description |
---|---|
org.fest.swing.finder |
Support for testing time-consuming tasks.
|
org.fest.swing.fixture |
The power and flexibility of FEST-Swing come from the fixtures in
this package.
|
Modifier and Type | Method and Description |
---|---|
DialogFixture |
DialogFinder.using(Robot robot)
Finds a
by name or type. |
Modifier and Type | Method and Description |
---|---|
DialogFixture |
DialogFixture.click()
Simulates a user clicking this fixture's
. |
DialogFixture |
DialogFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
DialogFixture |
DialogFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
DialogFixture |
ComponentContainerFixture.dialog()
Returns the only
currently available (if any.) This method uses the value defined in
as the default lookup timeout. |
DialogFixture |
ContainerFixture.dialog()
Returns the only
currently available (if any.) This method uses the value defined in
as the default lookup timeout. |
DialogFixture |
ComponentContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher)
Finds a
that matches the specified search criteria. |
DialogFixture |
ContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher)
Finds a
that matches the specified search criteria. |
DialogFixture |
ComponentContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher,
Timeout timeout)
Finds a
that matches the specified search criteria. |
DialogFixture |
ContainerFixture.dialog(GenericTypeMatcher<? extends Dialog> matcher,
Timeout timeout)
Finds a
that matches the specified search criteria. |
DialogFixture |
ComponentContainerFixture.dialog(String name)
Finds a
with a name matching the specified one. |
DialogFixture |
ContainerFixture.dialog(String name)
Finds a
with a name matching the specified one. |
DialogFixture |
ComponentContainerFixture.dialog(String name,
Timeout timeout)
Finds a
with a name matching the specified one. |
DialogFixture |
ContainerFixture.dialog(String name,
Timeout timeout)
Finds a
with a name matching the specified one. |
DialogFixture |
ComponentContainerFixture.dialog(Timeout timeout)
Returns the only
currently available (if any.) |
DialogFixture |
ContainerFixture.dialog(Timeout timeout)
Returns the only
currently available (if any.) |
DialogFixture |
DialogFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
DialogFixture |
DialogFixture.focus()
Gives input focus to this fixture's
. |
DialogFixture |
DialogFixture.moveTo(Point p)
Simulates a user moving this fixture's
to the given point. |
DialogFixture |
DialogFixture.moveToBack()
If the given
is visible, sends it to the back and may cause it to lose focus or
activation if it is the focused or active. |
DialogFixture |
DialogFixture.moveToFront()
If fixture's
is visible, brings it to the front and may make it the focused one. |
DialogFixture |
DialogFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
DialogFixture |
DialogFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
DialogFixture |
DialogFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
DialogFixture |
DialogFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
DialogFixture |
DialogFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
DialogFixture |
DialogFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
DialogFixture |
DialogFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
DialogFixture |
DialogFixture.requireFocused()
Asserts that this fixture's
has input focus. |
DialogFixture |
DialogFixture.requireModal()
Asserts that this fixture's
is modal. |
DialogFixture |
DialogFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
DialogFixture |
DialogFixture.requireSize(Dimension size)
Asserts that the size of this fixture's
is equal to given one. |
DialogFixture |
DialogFixture.requireVisible()
Asserts that this fixture's
is visible. |
DialogFixture |
DialogFixture.resizeHeightTo(int height)
Simulates a user resizing vertically this fixture's
. |
DialogFixture |
DialogFixture.resizeTo(Dimension size)
Simulates a user resizing this fixture's
. |
DialogFixture |
DialogFixture.resizeWidthTo(int width)
Simulates a user resizing horizontally this fixture's
. |
DialogFixture |
DialogFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
DialogFixture |
DialogFixture.show()
Shows this fixture's
. |
DialogFixture |
DialogFixture.show(Dimension size)
Shows this fixture's
, resized to the given size. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.