in reply to Re^2: how can i retrieve fields name from a form with mechanize
in thread how can i retrieve fields name from a form with mechanize

Mechanize provides methods to fetch individual inputs.
  • Comment on Re^3: how can i retrieve fields name from a form with mechanize

Replies are listed 'Best First'.
Re^4: how can i retrieve fields name from a form with mechanize
by navorinco (Initiate) on May 13, 2009 at 18:07 UTC
    i have to retrieve 2 fields name from a form that contains lot of fields. i can retrieve all form fields name : my @inputsname = $forms->param; can you help me plz im blocked.
      Do you want me to pick two fields at random?
      use List::Util qw( shuffle ); my ($name1, $name2) = shuffle @inputsname;

      If not, you'll need to specify what's special about those two fields, what sets them apart.

        no i dont want to retrieve 2 fields at random,i want just to retrieve the field name of login and password.and the form contain different fields name... how can i do that plzz