NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
sounds tantalizing. (Score:2)
Re: (Score:2)
I don't know if there is a transcript, it's an open-source project you can download from here [java.net]. From an example on that site:
Re:sounds tantalizing. (Score:1)
$mech->get( $url );
$mech->follow_link( text_regex => qr/download this/i );
$mech->submit_form(
form_number => 3,
fields => {
username => 'mungo',
password => 'lost-and-alone',
}
);
WWW::Mechanize is great.
Reply to This
Parent
Re: (Score:2)
Did you watch the demonstration? It's a lot more than what Mech or Selenium tools allow us to do (not that there's anything wrong with the latter). It can almost completely bridge the gap between developer and customer because it reads naturally and doesn't have things like an invocant or funny words like a 'regex'. It also does one heck of a lot more than what little I've mentioned. It's pretty cool stuff.