Can't locate Object method "cells" via Win32::IEAutomation.
Hello,
I m usingWin32::IEAutomation package from CPAN on Windows platform.
I m trying to find out the text on the table using cells function.
$ie->getTable("id:", "rt_NS");
print "\n$ie";
my $third_cell = $ie->cells(1);
print "\n$third_cell";
$text = $third_cell->cellText;
print "\ntext=$text";
But I m getting above mentioned error.
Please let me know which exactly package consists of Cells method which is referred on CPAN IE automation website.