Help for this page

Select Code to Download


  1. or download this
        use Win32::IEAutomation;
        my $ie = Win32::IEAutomation->new( visible => 1);
        $ie->gotoURL('https://www.mywebpage.com/index.html',1);
        
        $ie->getTextBox('id:', "mytextbox")->SetValue("relevant text");
        $ie->getButton('id:', "mybutton")->Click;
    
  2. or download this
        <input type="text" id="mytextbox" />
        <button id="mybutton" title="Go" class="ControlButton" value="Go" 
    +onclick="researchLookupObj.GoClick(CallServer);return false;">Search<
    +/button>