Hi all,
I have to get all table and it's row and column entry.
let say this is the url http://hg.sagemath.org and it has
four table name,Descriptio n,Contact,Last change and each table has some content.i have to get all name's content.
how i can do this.i am using http://search.cpan.org/~prashant/Win...EAutomation.pm
i tried below code but i got Can't call method "rows" on an undefined value this error.
Please anyone help me on this topic.
Thanks,
I have to get all table and it's row and column entry.
let say this is the url http://hg.sagemath.org and it has
four table name,Descriptio n,Contact,Last change and each table has some content.i have to get all name's content.
how i can do this.i am using http://search.cpan.org/~prashant/Win...EAutomation.pm
i tried below code but i got Can't call method "rows" on an undefined value this error.
Code:
use Win32::IEAutomation;
use Win32::IEAutomation::Table;
use Win32::IEAutomation::Element;
use Win32::IEAutomation::WinClicker;
# Creating new instance of Internet Explorer
my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1);
# Site navigation
$ie->gotoURL('http://hg.sagemath.org');
$ie->WaitforDone;
$mytable= $ie->getTable("class:","Name");
$my_row = $mytable->rows(2);
Please anyone help me on this topic.
Thanks,
Comment