in reply to Perl to test .NET GUIs?

Have either of you tried using Win32::GuiTest to automate a .Net application? Surely that would take you all of five minutes to actually try? Have you experienced any problems?

Replies are listed 'Best First'.
Re^2: Perl to test .NET GUIs?
by AutomateWithPerl (Novice) on Apr 29, 2010 at 14:54 UTC

    Win32::GuiTest relies on "windows handles" to access and control windows components.

    I get a handle to a text box, checkbox, button, pulldown, etc through various methods, then I can check or set the value, press the button, check the checkbox, etc.

    For .Net GUIs, I can only get handles to text boxes, nothing else. It simply does not see them.

    I would love to have an alternative Perl Module or method to find the handles.

    Any ideas?