Subject: | getAllTables doesn't return an array of Table-objects |
In the documentation it is said that getAllTables returns an array of
Table-objects, but it doesn't.
In getAllTables it is
sub getAllTables{
...
my $links = $agent->Document->all->tags("table");
for (my $n = 0; $n < $links->length; $n++){
my $link_object = Win32::IEAutomation::Element->new();
...
}
This should be:
sub getAllTables{
...
my $links = $agent->Document->all->tags("table");
for (my $n = 0; $n < $links->length; $n++){
my $link_object = Win32::IEAutomation::Table->new();
...
}