Sponsored Content
Top Forums Shell Programming and Scripting How to select a particular field from a drop-down menu in a webpage using perl script? Post 302806489 by latika on Monday 13th of May 2013 06:51:23 AM
Old 05-13-2013
How to select a particular field from a drop-down menu in a webpage using perl script?

Hi Team,

I have a requirement to login into URL using username and password , then I have to select a "particular name" from drop-down menu and then Read the values user records etc.... using perl.

Is it possible to do in perl script ? (OR) Can you please let me know which scripting languange is best to do this requirement ?

Thanks in advance ....

Regards
Latika
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Drop down menu in bash for timezone select

Is there any way to implement a drop down menu selection in bash? This is on CDLinux which is a very minimal live CD and I am using it to install an image onto a hard drive. Part of that process is the timezone selection. There are just too many timezones to attempt to use the "select" command.... (1 Reply)
Discussion started by: simonb
1 Replies

2. Shell Programming and Scripting

Help with perl script to search webpage

i have to point out that i'm a avid shell script lover and i have next to zero interest in perl which is why i dont know the first thing about it. however, just need to do this one thing on it.. i need to do something in perl but dont know how. I have a list of email addresses in the following... (5 Replies)
Discussion started by: Terrible
5 Replies

3. Shell Programming and Scripting

Drop records with non-numerics in field X

I have tab delimited file and need to remove all records prior to sort, that have non-numerics in the Field 2. valid/invalid field 2 data examples are: " 123" valid "1 23" invalid " NOPE" invalid I've tried this awk it does not recognize tab as the delimiter or check... (3 Replies)
Discussion started by: akxeman
3 Replies

4. Shell Programming and Scripting

Drop down menu

How to create a drop down menu in either bash or ksh? (3 Replies)
Discussion started by: proactiveaditya
3 Replies

5. Web Development

Dynamic Drop Down Menu

I need to create a dynamic drop down menu which is populated by entries such as; htdocs/client1/index.php htdocs/client2/index.php htdocs/client3/index.php htdocs/client4/index.php etc. So htdocs/client*/index.php Is this possible? I know how to do this using normal arrays, but not... (2 Replies)
Discussion started by: JayC89
2 Replies

6. Shell Programming and Scripting

Perl - Help with Menu script

Hi, I'm trying to wrtie a menu perl script which will allow users to connect to different servers from a management server without having to know the long server name. I have written the below code, but when I execute it I manage to get through the first 2 menus but it doesn't exit once... (2 Replies)
Discussion started by: chris01010
2 Replies

7. Shell Programming and Scripting

open a webpage through perl script

Hi All Can anyone please help me how to open a webpage suppose(Google) with the help of perl script and refresh it after every 5 minutes. (0 Replies)
Discussion started by: parthmittal2007
0 Replies

8. Shell Programming and Scripting

File Select Menu Script

Hi All, I need to develop a bash script list “list of files” and able to select if any and set as globe variable in script and use for other function. I would like to see in menu format. Example out put Below are the listed files for database clone 1. Sys.txt 2. abc.txt 3. Ddd.txt... (1 Reply)
Discussion started by: ashanabey
1 Replies

9. Shell Programming and Scripting

Perl Script - Sort Columns on webpage

foreach my $ds (sort { $a->{books} cmp $b->{books} || (($a->{books} eq "A") ? ($a->{hammers} cmp $b->{hammers}) : (($a->{shoes} <=> $b->{shoes}) || ($a->{hammers}... (1 Reply)
Discussion started by: scj2012
1 Replies
HTML::FormFu::Element::DateTime(3pm)			User Contributed Perl Documentation		      HTML::FormFu::Element::DateTime(3pm)

NAME
HTML::FormFu::Element::DateTime - Date / Time combo field SYNOPSIS
--- elements: - type: DateTime name: start_datetime label: 'Start:' auto_inflate: 1 DESCRIPTION
Sub-class of Date element, providing extra "hour" and "minute" Select menus. METHODS
hour Arguments: \%setting Set values effecting the "hour" select menu. Known keys are: name Override the auto-generated name of the select menu. default Set the default value of the select menu prefix Arguments: $value Arguments: @values A string or arrayref of strings to be inserted into the start of the select menu. Each value is only used as the label for a select item - the value for each of these items is always the empty string ''. prefix_loc Arguments: $localization_key Arguments: @localization_keys A localized string or arrayref of localized strings to be inserted into the start of the select menu. Each value is localized and then only used as the label for a select item - the value for each of these items is always the empty string ''. Use "prefix_loc" insted of "prefix". minute Arguments: \%setting Set values effecting the "minute" select menu. Known keys are: name Override the auto-generated name of the select menu. default Set the default value of the select menu prefix Arguments: $value Arguments: @values A string or arrayref of strings to be inserted into the start of the select menu. Each value is only used as the label for a select item - the value for each of these items is always the empty string ''. prefix_loc Arguments: $localization_key Arguments: @localization_keys A localized string or arrayref of localized strings to be inserted into the start of the select menu. Each value is localized and then only used as the label for a select item - the value for each of these items is always the empty string ''. Use "prefix_loc" insted of "prefix". second Arguments: \%setting Set values effecting the "second" select menu. Known keys are: name Override the auto-generated name of the select menu. default Set the default value of the select menu prefix Arguments: $value Arguments: @values A string or arrayref of strings to be inserted into the start of the select menu. Each value is only used as the label for a select item - the value for each of these items is always the empty string ''. prefix_loc Arguments: $localization_key Arguments: @localization_keys A localized string or arrayref of localized strings to be inserted into the start of the select menu. Each value is localized and then only used as the label for a select item - the value for each of these items is always the empty string ''. Use "prefix_loc" insted of "prefix". field_order Arguments: @fields Default Value: ['day', 'month', 'year', 'hour', 'minute'] Specify the order of the date fields in the rendered HTML. If you want the "second" selector to display, you must set both "/field_order" and strftime yourself. Eg: elements: type: DateTime name: foo strftime: '%d-%m-%Y %H:%M:%S' field_order: ['day', 'month', 'year', 'hour', 'minute', 'second'] Not all fields are required. No single field can be used more than once. CAVEATS
See "CAVEATS" in HTML::FormFu::Element::Date SEE ALSO
Is a sub-class of, and inherits methods from HTML::FormFu::Element::Date HTML::FormFu::Element::_Field, HTML::FormFu::Element::Multi, HTML::FormFu::Element::Block, HTML::FormFu::Element HTML::FormFu AUTHOR
Carl Franks, "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 HTML::FormFu::Element::DateTime(3pm)
All times are GMT -4. The time now is 08:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy