Help for this page

Select Code to Download


  1. or download this
      my $form = $mech->current_form;
      warn $form->find_input( 'shopwizard' );
    
  2. or download this
    my $form;
    foreach ( $mech->forms ){
    ...
    my @shopwizardForms = grep { $_->find_input( 'shopwizard' ) } $mech->f
    +orms;
    # or just:
    my ($shopwizardForm) = grep { $_->find_input( 'shopwizard' ) } $mech->
    +forms;