I need to document the visual differences between two different versions of a Java program. This involves clicking on an element in the old version, then clicking on the same element in the new version, and taking a screen shot for every instance in which the two display different information and creating a bug report.
Is there a tool that can automate this?
Here's what I've tried so far, but I'm open to other ideas:
I put both Java programs side-by-side and tried using AutoHotkey to duplicate my mouse clicks 960 pixels to the right, but I had some wonky behavior, and even ignoring the wonky behavior I found out that it doesn't work anyway.
I also tried using a Java Robot so the new version of the app would duplicate any mouse clicks 960 pixels to the right, but even the Robot was unable to click in the other Java window. (Note: the Robot was able to click on the Windows desktop and on other programs, just not on the other Java program.)