|
Hi Jochen,
This is not possible through the WIM interface, but you can try the IE automation API (untested):
my $select = $ie->current_form->find_input( 'selectname', 'select' ) or die "'selectname' not found
+";
my $sel_ole = $$select; # Get the OLE object
for ( my $i = 0; $i < $sel_ole->options->length; $i++ ) {
printf "option value = '%s'\n", $sel_ole->options( $i )->value;
}
See also: http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/select.asp
Mind you, this is *undocumented* behaviour, and access to the OLE objects will change in future!
HTH,
-- Abe.
|