cesapun has asked for the wisdom of the Perl Monks concerning the following question:

Hi there! I have a little question . Is there possible to open a page in browser and fill some data into a text field in PERL?

EDIT:

my $info= $ARGV[0];

so,to start script i will type in cmd: "perl script.pl some text" and when i press enter,browser will open a page and "some text" goes to a text field...i don't want to press any button,just pop up browser with that text filled into a text box

  • Comment on Open Browser and fill smth into a text field

Replies are listed 'Best First'.
Re: perl question
by blue_cowdawg (Monsignor) on Sep 08, 2011 at 18:01 UTC
        Is there possible to open a page in browser and fill some data into a text field in PERL?

    Detail please.... exactly what are you trying to accomplish by that? Are you submitting a form to a website? Are you serving a form to an external user from a web server?


    Peter L. Berghold -- Unix Professional
    Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg
Re: perl question
by luis.roca (Deacon) on Sep 08, 2011 at 18:07 UTC
Re: perl question
by cesapun (Acolyte) on Sep 08, 2011 at 18:13 UTC
    i want a script in perl that open a web page in default browser and fill the info into text box

    my $info= $ARGV[0];

    so,to start script i will type in cmd: "perl script.pl some text" and when i press enter,browser will open a page and "some text" goes to a text field...i don't want to press any button,just pop up browser with that text filled into a text box

    hope you understand me