In order to store the source of a web page, I can do the following:
$ua = new LWP::UserAgent;
...
$req = new HTTP::Request 'GET' => 'http:blah';
...
But suppose the page has a text field and a button and I want to enter some text into a text field and press the 'submit' button.
How do I do that?
Thanx in Advance.