FEST (Fixtures for Easy Software Testing) is a collection of APIs to facilitate testing.
6
votes
7answers
2k views
Get the VK int from an arbitrary char in java
How do you get the VK code from a char that is a letter? It seems like you should be able to do something like javax.swing.KeyStroke.getKeyStroke('c').getKeyCode(), but that doesn't work (the result ...
3
votes
1answer
109 views
When is the right time to call robot.cleanUp()
I'm using JUnit and FEST for Swing integration testing of our app that I start and stop, multiple times in the test case. Should @after include a call to robot.cleanUp()?
2
votes
3answers
246 views
Thread.sleep(time) vs. robot.wait(time)
I'm trying to write some GUI and integration tests using JUnit and FEST.
Here is what I have:
@Before
public void setUp(){
try{
program.main(args);
robot.wait(30000); //gives ...
1
vote
0answers
23 views
+50
Making FEST:s component lookup mechanism wait for a component to exist
NOTE: This question is basically identical to this question. Since there were no answers to that question, I decided to extend the example from there into a runnable SSCE, and provide some additional ...
1
vote
0answers
52 views
Making FEST to wait for the application to load
I am new to FEST based GUI Testing.
MyFrame is the root class for my application.
@Before
public void onSetUp() {
MyFrame frame = GuiActionRunner.execute(new ...
1
vote
1answer
156 views
Extending fluent interface
I'm starting using Fluent Assertions and I like it a lot, but wonder if it's possible to extend the existing tests in a general way like this:
add method hasSizeAtLeast(int limit) in GroupAssert
add ...
1
vote
1answer
89 views
Are there any sample GUI and FEST code that might help in understanding the framework?
I have been reading a lot and looking at the code to understand how FEST works. Unforunately I could'n find that many sample code online other than:
fest.codehaus.org/Getting+Started
...
1
vote
2answers
87 views
FEST: Assert that JButton is showing a certain Icon
In my FEST-Test I try to assert, that a JButton has a certain ImageIcon. I didn't find a corresponding method on org.fest.swing.fixture.JButtonFixture
1
vote
1answer
426 views
FEST JUnit-Swing testing noobQ: how to test a main class?
Despite reading the tutorial here, I cant seem to understand how to make FEST work with my application.
I have a Swing application in a big class witht a main method, and a couple of SwingWorker ...
1
vote
2answers
204 views
Multiple JUnit tests using FEST
I've written several JUnit test methods to test my Java Swing GUI (using FEST). My class is in the following format:
public class Tests
{
@BeforeClass
public static void beforeClass() throws ...
0
votes
0answers
33 views
FEST in-browser applet automation
I have tried this tutorial for in-browser Applet automation with FEST 1.2, but the classes for the instrumentation of the applet (e.g. org.fest.swing.fixture.JAppletFixture) are not in the package any ...
0
votes
0answers
31 views
How to control through unit testing various encodings of files?
I used to use FEST assert in my unit tests.
I've just created a service that handles files with encoding passed as a parameter.
How can I make as part of unit tests take into account a number of ...
0
votes
0answers
14 views
Java: Any chance to check a ToolTipText in the TableHeader using FEST?
Is it possible to check the ToolTipTexts of the TableHeader for each cell using JTableHeaderFixture from the FEST API?
A “requireToolTip”-Method exists but I can’t check a single ToolTip with this ...
0
votes
0answers
50 views
Java: Problems with GUI testing while using FEST, JColorChooser and ActionListener
To introduce the subject of GUI testing I build a more complex GUI based on the Oracle Table GUI Example (http://docs.oracle.com/javase/tutorial/uiswing/components/table.html#editor).
After I learned ...
0
votes
0answers
42 views
FEST-Swing with java applet
I found that FEST-Swing has the capability to automate UI actions on Java applets.
Source:
http://fest.easytesting.org/
"FEST-Swing can also test desktop applications as well as applets (in a viewer ...
0
votes
1answer
109 views
IllegalThreadStateException while using BasicRobot
I'm getting the following while trying to use BasicRobot (FEST). I don't know how to fix this.
[ConditionalEventPump] Exception occurred during event dispatching:
...
0
votes
0answers
37 views
Spurious warnings when taking screen snapshots with FEST-Swing and JUnit
I've asked about this on the FEST users mailing list but not got any response so I wonder if anyone here can help.
I'm using FEST to test a Swing application, and would like to generate a screenshot ...
0
votes
4answers
315 views
How do I read pixels from a PNG file?
I know how to capture a screenshot by using Robot, Windowtester or FEST. I also know how to read a pixel from the screen by using robot.
int x = 10;
int y = 10;
Color px = getPixelColor(int x, int ...
0
votes
1answer
52 views
What is the difference between isSameAs() and isEqualTo() in FEST?
What is the difference between the two methods isSameAs() and isEqualTo() ?
The documentation says:
Verifies that the actual value is equal to the given one.
and
Verifies that the actual value is ...
0
votes
1answer
193 views
running java swing fest test when computer is locked
Can the FEST-Swing (mentioned here) test still work if the computer is locked? I did a test, and it didn't work. I think the Swing doesn't paint on the screen because the screen is locked, hence the ...
-2
votes
1answer
19 views
How to get the right component name and then use it in FEST testing
I am using setname to define buttons in my Swing applcation. I want to use the names in my FEST code. This is the source code:
for (int i = 0; i < trimSizeButtons.length; ++i) {
...