perl2008 has asked for the wisdom of the Perl Monks concerning the following question:
Sorry -- here is the error message:#!c:\\perl\\bin use LWP::Debug qw(+); use strict; use Win32::IEAutomation; use Win32::IEAutomation::Table; use Win32::IEAutomation::Element; my $ie = Win32::IEAutomation->new(); $ie->gotoURL('c:\perl\bin\testtable.htm/'); my @atbl = $ie->getAllTables; for my $a (@atbl){ my @allRows = $a->rows; for my $in(@allRows){ my @allCell = $in->cells; for my $y (@allCell){ print $y->cellText; } } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing cellText
by Mr. Muskrat (Canon) on Nov 26, 2008 at 17:01 UTC | |
|