I want to make junit test for an application, with graphics editor like functionality. I.e. user can drag and drop mouse smoothly in GUI. It seems not usefull to write coordinate movements programmatically. Is it possible to have some macro recording, to capture user guestures and then use them for testing?
Asked
Active
Viewed 75 times
1 Answers
0
Maybe you can use AWTEventListener to accomplish this task.
possilbly duplicate of Detecting mouse enter/exit events anywhere on JPanel
Or you can refer to java2.com example.