in reply to Perl for GUI Automation

There are various packages for cross-platform GUI development for Perl, including

I'd probably recommend starting with Wx because it has the most native-looking widgets - that is, when running on Windows it looks like a standard Windows app; when running on Linux it looks like a standard GNOME app; etc. Many of the others can look clunky and/or foreign.

That said, Wx can be a little tricky to get installed - in my experience Prima and Tk are the easiest to install (at least on Linux). (Though none of them are rocket science.)

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: Perl for GUI Automation
by Anonymous Monk on Jan 22, 2013 at 08:20 UTC