My application is developed on java swing technology and we are trying to automate it using commercial tools build on windows and dlls, but the tool was not able to wait till all the swing event/worker threads complete processing... I have a need go to read and monitor the my application thread/event process completion status before moving to next operation ?
Please help me in some sample code to read swing application process from another jar/ from command prompt
In simple words, how to read java swing application thread/process completion status from another java program? we are using github.com/vivekprahlad/frankenstein to automate our application ... this has very less documentation on how to start application and execute tests ...
I am intermediate to eclipse and java programs ... all we are trying is to automate unit test cases using frankenstein.. Need help on how to start with sample code ... 1. How to start my application from frankenstein, my application will start from a bat file, I added 'com.thoughtworks.frankenstein.application.PipingMain com.abc.app.tone.all.Launcher' to bat file, so that frankenstein recorder will open and was able to record actions. But want to write a test in eclipse and execute ..