Hi,
Thanks for the link. I had a look at the Win32::IE::Mechanize module but can not find much info apart from the CPAN page. I found people use the following piece of code to e.g. set a field in the page and submit it
$ie->form_name( $name ) $ie->field($name,$value)
However, some initial tests have failed.
I tried to use $name and $field that I found in the source code of the page http://www.nationalrail.co.uk/times_fares/ldb/
<form id="ldb" name="ldb" method="get" action="/times_fares/ldb/;jsess +ionid=10BE7B01E6848F6282BF503A24CD606F" onsubmit="kbSubmit(this)"> <div id="contentbg"> <h1><em>Live</em> Departures &amp; Arrivals</h1> <div class="jpbody"> <p>Please enter the entire, partial name or 3-letter c +ode for your station.</p> <fieldset> <div class="station"> <label for="mainStation">Station:</label> <input id="mainStation" name="mainStation" typ +e="text" value="" size="30"/> <div id="mainStationAc" class="sacDiv"></div>
but it seems that the code snippet
my $url = "http://www.nationalrail.co.uk/ldb/"; $ie = Win32::IE::Mechanize->new( visible => 1 ); $ie->get( $url ); my $formname = "ldb"; my $gotform = $ie->form_name( $formname );
returns an undefined value for $gotform. And, of course, the same applies when I try to set a field, e.g. mainStation to a value.
Furthermore, this is not exactly what I want to do. I want to get the user input when the user submits the form and not set it myself. Is this possible through Win32::IE::Mechanize?

Sorry for so many questions, but I am a total newbie in working with perl + web forms.
Athanasia

In reply to Re^2: Grab text from web page using Win32::OLE by athanasia
in thread Grab text from web page using Win32::OLE by athanasia

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.