Tagged Questions
7
votes
8answers
2k views
Selenium is to Web UI testing as ________ is to Windows application UI testing
I'm interested in UI testing a client only Java application. What is the most popular framework for doing so? What is your recommended framework? Also, why doesn't Selenium do this (or does it)? It ...
3
votes
2answers
249 views
Robotium. In the suite of tests each next test is affected by the previous test
I have multiple UI tests. When I run a single test, everything is OK. But if I run a batch of them (as a part of CI build) test fail, because tests that go first change the state of the application, ...
3
votes
3answers
137 views
Java regression testing (with AWT involved) possible without stealing desktop focus?
I've got regression tests of a Java system that don't bring up any graphical elements but do make use of the AWT event thread. Is there any way I can set things up to run this test suite in the ...
3
votes
2answers
551 views
how to make gui test without displaying in FEST-SWING
Hi guys
In my final project,we are using FEST for gui testing, we have been persuaded fest is powerfull,but displaying of frames everytime is very waste of time ,Also we are using continuum ,fest ...
2
votes
0answers
85 views
Please comment on a proposed application tester servlet
While I am waiting on answers to set up a testing system, I'd like to hear your comments on a new architecture. Here goes, with a little background:
I have had the code figured out to track and ...
2
votes
2answers
153 views
Are there any good frameworks for automated testing of AWT GUIs?
Are there any good frameworks for automated testing of AWT GUIs?
Integration with JUnit would be a plus.
1
vote
1answer
91 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
4answers
418 views
Automated GUI Testing
I am writing a Java Desktop Application (SWING) using Netbeans IDE 6.9. I want to do automated GUI testing. All I know about testing is JUnit tests which won't apply for my GUI application. Is there a ...