How to read values from Java Application
-
I have been trying to read values from an application written in Java using an applicaiton written in .Net. The Java app is a third party application so I have no control over it. I am trying to get the value of some textboxes and combo boxes on the Java Window. I thought this was going to be easy just use spy++ to grab the control ids and get the value, but none of the java controls are recognized by Spy++. Upon further research Java controls do not use the OS for managing there controls. It is all done by the open java window. I have thought about using sendkeys to tab to and copy the values out of each control, but this seems very quirky. Using sendkeys also generates more issues. There is no way for me to know where I am on the form and I can't copy values out of the combo boxes because they are like the .net drop down only style. Is there any way I can get the values out of the java controls? Thanks, Mike Lasseter