cmohima has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I am testing a GUI application(Java-flex based). I am using Win32::GuiTest for it. I can automate the entire workflow with it. But I do not know how to read anything from the application window. So I am able to give inputs using SendKeys but I am not aware of how to read data from the app. Kindly help.

Replies are listed 'Best First'.
Re: Reading from a GUI application
by moritz (Cardinal) on Jul 20, 2011 at 12:09 UTC
    But I do not know how to read anything from the application window.

    Have you looked at the documentation? It mentions a GetWindowText function right in the synopsis. Have you tried it? If yes, what's the problem with it? If not, why not?

Re: Reading from a GUI application
by Anonymous Monk on Jul 20, 2011 at 22:56 UTC
Re: Reading from a GUI application
by cmohima (Initiate) on Jul 22, 2011 at 04:55 UTC
    Hi Moritz, GetWindowText is returning the window title,I want the contents inside the window,is there any function with which I can do that?