• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Automated testing tool for GUI in Java

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I need to test an user interface which uses java swing,openGL,SVG(Scalable Vector graphics).It has a frame with a split pane,with two panels on left side and three panels on right side. A left side panel contains 3000 elements which are basically labels.Double clicking an element causes the element's text to appear on the other panel on the left side and a 3D figure to appear on one panel of the right side ,and some plots to appear on the other two panels on the right side.Each element has a popup-menu.Selecting an item in the pop-up menu opens several new panels.I need an automated testing tool that runs through each of these 3000 items ,double clicking them and selecting the items of the pop-up menus of these elements and checks whether all panels appear and also reports any exceptions.
Could anybody suggest me a suitable Automated Testing Tool in Java ?. Thanks in advance.
 
Author
Posts: 6055
8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Check out products from Mercury, Rational, and Segue. You can also write your own using Java's Robot class.
--Mark
 
reply
    Bookmark Topic Watch Topic
  • New Topic