|
"cells" is a method from the Win32::IEAutomation::Table class.
Your code should look like
my $table = $ie->getTable("id:", "rt_NS");
print "\n$ie";
my $third_cell = $table->cells(1);
print "\n$third_cell";
$text = $third_cell->cellText;
print "\ntext=$text";
BTW: You posted the question in the wrong queue... You posted in Win32::IE::Mechanize istead of Win32::IEAutomation |