I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-12-27 22:39:09.205807-08 by shrutic
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.
Direct Responses: 13123 | Write a response
Posted on 2010-12-28 02:15:46.174828-08 by reneeb in response to 13122
Re: Can't locate Object method "cells" via Win32::IEAutomation.
"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
Direct Responses: Write a response