guruk has asked for the wisdom of the Perl Monks concerning the following question:

I am trying to access a table cell as below

$ie->getTable('id:',"table_id")->tableCells(2,4);

I get the error as can't call method tableCells on an undefined value

I am trying to understand the below line of code on win32::ieautomation home page

$row=$table_objects->rows(2);

does $table_objects in above line mean

$ie->getTable();

  • Comment on getTable problem in Win32::IEAutomation