GUI Testing Tool for Java Application

Requirements:

  • Maximum reach
  • a free license will be a big advantage.
  • compatibility with various frames
  • it should work on the old JVM (starting with Java 3).

What could you recommend to me?

+4
source share
4 answers

Consider using SwingExplorer :

Swing Explorer is an open source tool for Swing application developers that is designed to visually examine an application based on Swing Internals.

  • Find all top-level components (Windows, Frames, Dialogs)
  • View component hierarchy
  • AWT / Swing Event Monitoring
  • 2D graphics debugging
  • Dig into source code
  • Flow Control Violation
+1
source

To test the graphical interface, it is preferable to use Jmeter as a free technique and easily test the application, as well as have functionality for testing load and performance.

http://jmeter.apache.org/download_jmeter.cgi 
0
source

For swing, I used http://www.qfs.de/en/qftest/ , which is commercial.

I heard about http://code.google.com/p/fest/ .

0
source

Use selenium IDE, use can perform automation tests, it even generates JUnit test cases. check out the tutorial for more information http://www.jroller.com/selenium/

-1
source

Source: https://habr.com/ru/post/1482552/


All Articles