How to automate a click in a third-party Java applet?

Ok, here is my problem: I use WatiN to navigate the website, but then a Java applet appears in a separate window. Ideally, I would like to automate this window (selecting a list box, keystrokes, etc.) With something like the equivalent of NUnitForms or something else ... can anyone give me a suggestion on how to do this ? Please note that I do not have the source code of the applet, it is third-party.

+5
source share
1 answer

http://www.geeksforgeeks.org/robot-class-java-awt/

Here is a tutorial on using the Robot class

0
source

All Articles