1.   use Win32::IEAutomation ; 
  2.    use Win32::IEAutomation::Table; 
  3.    use Win32::IEAutomation::Element; 
  4.    use Win32::IEAutomation::WinClicker; 

  5.  
  6.   my $ie = Win32::IEAutomation -> new(); 
  7.    my $url_01 = "http://192.168.204.105/man.htm"
  8.    $ie -> gotoURL("$url_01"); 
  9.    my @m = $ie -> PageText(); 
  10. table 里面的元素 
  11.  my $mun = $ie -> getTable("name:","vertab") -> tableCells(2,1) -> cellText();


 

  1. 获取 Frame leftFrame 里面的对象 
  2. $ie -> getFrame("name:","leftFrame") ->  getLink("linktext:","VLAN管理") -> Click();