The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More tests => 3;
use lib 't/lib';
my $mech = Test::WWW::Mechanize::Catalyst->new;
$mech->get_ok('http://localhost/basic/form');
my ($form) = $mech->forms;
ok($form);
ok( $form->find_input('basic_form') );