FEST (Fixtures for Easy Software Testing) is a collection of APIs to facilitate Java software testing. FEST contains a fluent API for reflection, assertion and interacting with SWING GUI Components. It can be used within JUnit and TestNG.
1
vote
0answers
23 views
Netbeans Generics Bug using FEST, Java?
I have the following non-generic method for getting a JListFixture using FEST:
public static JListFixture getJListFixtureNonGeneric(final FrameFixture frame) {
return frame.list(new ...
4
votes
2answers
71 views
Should GUI tests run with the default look and feel?
I'm working on an application that has a custom look and feel. For GUI testing, I am using FEST-Swing.
Currently, the GUI tests are running with the default java look and feel. Because of this, some ...
0
votes
0answers
13 views
FEST Test hangs on creating new Robot
I'm trying to run tests on multiple frames.
When executed it hangs on the creation of a new Robot.
The first frame uses the default Robot, the code for the second Robot is below:
Robot robot2 = ...
1
vote
0answers
10 views
Get text color from with Fest framework, within a JTableFixture
I'm inspecting a JTableFixture, with several lines filled with texts. Lines may have different colors.
How can i access the displayed text's color using Fest Framework ?
Here is what i tryed for now
...
0
votes
0answers
23 views
How to use FEST tests with Groovy's GMock framework
I'm trying to use FEST swing test suite to write test for different interface responses. In single class situations it works very well. However, now I have a situation where I have am using ...
0
votes
0answers
75 views
Alternative to Selenium with FEST (with java applet support ) [closed]
Some of our applet objects are not FEST ready and we can't use Selenium on those applets for automated tests.
What are some (if any, since we've searched extensively) alternatives to Selenium / FEST ...
1
vote
1answer
46 views
FEST: How to use the NoExitSecurityManager properly?
I starting to use FEST to help me to perform unit test on my Java Swing GUI.
For now, I managed to get through the documentation (mostly deprecated) and help me by looking at the Javadoc and the ...
1
vote
2answers
158 views
Correct way of using FEST-assert in Junit for Android?
I'm new to both JUnit and FEST on Android. I'm trying to use FEST-Android in my class but keep getting error when compile:
Android Dex: [ZHoltoTest] trouble processing ...
0
votes
1answer
110 views
Maven and FEST-Swing Tests
I have some FEST-Swing test and I would like to run it with Maven under linux.
I tred using xvfb like this:
xvfb-run mvn -Dtest=e2e.MateriePrimeE2eTest test
But I have this error:
Running ...
1
vote
1answer
111 views
JMockit and Fest UI testing
I have been working on a project that has numerous UI components. Since all the components are based on the MVC pattern, they are structured as a component - public interface and factory, package ...
2
votes
3answers
91 views
ClassNotFound error when building Fest with maven
Would like to try out fest 2.x branch. I'm not familiar with maven, but I downloaded fest from github, which gave me a pom.xml, so I ran maven with mvn install, and get the following:
[INFO] Error ...
-2
votes
1answer
83 views
AWT - testing existing applet
I need to test Java Applet written in AWT for browsers, but I don't know how to connect to existing frame/dialog/button.
Is any option to get list of existing AWT object in system, and do something ...
0
votes
1answer
81 views
FEST Test hangs on new FrameFixture()
I tried to create a swing test using FEST, which simply clicks a button. Unfortunately, the test hangs while executing new FrameFixture(...).
I'm instantiating a controller, which internally creates a ...
1
vote
1answer
126 views
fest-swing and wrappers for swing/awt components
I'd like to test GUI client with fest-swing but...
The client based on custom layer which wrapps swing components. The problem is that my custom gui components do not inherite from swing components ...
0
votes
1answer
90 views
get JLabel from JTree Using (or not) Fest framework
I'm using Fest in order to check if two entries have the same icon.
I'm actually having a JTreeFixture, from what i can access a specific entry with its path.
JTreeFixture tree = ...
0
votes
0answers
283 views
FEST JUnit Swing - Testing GUI Components
I need to add unit testing of various GUI components to a very large and rather old (Java 1.6 soon to be 1.7) project. Here is how I am initializing my test:
@BeforeClass
public static void runOnce() ...
1
vote
1answer
78 views
how do I remotely call a function of an applet that is just being debugged in Eclipse?
When I call a certain function of my applet in the browser via javascript I get an exception. However, I don't want to debug that applet while it runs in the browser, I want to start it via Debug ...
1
vote
2answers
274 views
Block mouse input in Java Swing
I have a testing FEST app which uses an AWT robot for simulating certain actions over a Swing interface. My problem is that it seems like moving the mouse pointer during the robot-test execution ...
0
votes
1answer
180 views
FEST: Retrieving a cell value when cell is under a JTable with CellRenderPane
I have code like this:
//(...)
JTableFixture myTreeTable = frame.table(matcher);
If I try to obtain JCellFixtures or values or contents, everything is null. I am only obtaining the number ...
1
vote
1answer
62 views
FEST: Getting a component by his class (inherited from a basic component)
I have this code:
//FrameFixture frame = (...got it from window, main frame...)
JTableFixture table = frame.table(new GenericTypeMatcher<JTable>(JTable.class) {
@Override ...
1
vote
1answer
340 views
FEST: Wait for the GUI to load before doing anything
@Before public void setUp() {
Robot robot = BasicRobot.robotWithCurrentAwtHierarchy();
ApplicationLauncher.application("myApp").start();
Pause.pause(5, TimeUnit.SECONDS); ...
2
votes
0answers
317 views
JAVA FEST Can't find OptionsPane
I am trying to get Java FEST to find a pop up dialogue and click on the the yes button.
I have the following code:
JOptionPaneFixture fixture = ...
1
vote
1answer
348 views
FEST Swing new frame on click, can't make new frame fixture
I am trying to write a Fest Swing test but am having trouble making / finding a frame fixture. I have two JFrames, one opens the other on click, and I'd like to either:
1.) find the frame fixture of ...
2
votes
1answer
885 views
Safe way to replace AWT EventQueue in running Swing application
Various sporadic problems in the Swing application I maintain appear to be caused by the way it replaces the default AWT event queue with its own custom version using ...
1
vote
1answer
130 views
How to obtain a certain component using FEST
I have a problem with FEST:
I have four JtextFields in a JDialog. How can I obtain a certain JTextField if I have four JTextFields, where attributes name, text, and visibility are undefined or null.
...
1
vote
2answers
440 views
Making FEST:s component lookup mechanism wait for a component to exist [duplicate]
Possible Duplicate:
Making FEST to wait for the application to load
NOTE: This question is basically identical to this question. Since there were no answers to that question, I decided to ...
-2
votes
1answer
69 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) {
...
3
votes
2answers
281 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
397 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
389 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:
...
2
votes
3answers
891 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
1answer
480 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
832 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
...
4
votes
4answers
4k 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 ...
2
votes
2answers
231 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
203 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 ...
2
votes
1answer
1k 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 ...
2
votes
2answers
445 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 ...
1
vote
1answer
360 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 ...
3
votes
1answer
178 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()?
8
votes
3answers
2k views
how to make gui test without displaying in FEST-SWING
In my project, we are using FEST for GUI testing. We have been persuaded that FEST is powerful, however displaying frames every time is a waste of time. Also we are using continuum and FEST doesn't ...
7
votes
7answers
4k 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 ...