Reputation:
I want to know that can we operate a simple software using java programming...i.e. if we know already what r the buttons there and what will be the flow after clicking any button, then can we programatically handle the flow?
Upvotes: 0
Views: 64
Reputation: 54715
Check the the Java java.awt.Robot class, which can be used to control the mouse pointer and generate button clicks.
Upvotes: 4