Hi,
I am completely new to Perl and i need help from you.
I need to create a perl script that access a internal website, passes a number to 'release' field and select a radio button 'all result' and then click 'Submit' button to get the result in a notepad/excel.
At this moment , all i could try is open the web page with the following code,
use Win32::OLE;
Win32::OLE::CreateObject("InternetExplorer.Application.1", $ie) || die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($wedpage");
I need to eneter a release number, change the radio button to all result and click submit button to get the result.
Looking for your help... Thanks in advance.
I am completely new to Perl and i need help from you.
I need to create a perl script that access a internal website, passes a number to 'release' field and select a radio button 'all result' and then click 'Submit' button to get the result in a notepad/excel.
At this moment , all i could try is open the web page with the following code,
use Win32::OLE;
Win32::OLE::CreateObject("InternetExplorer.Application.1", $ie) || die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($wedpage");
I need to eneter a release number, change the radio button to all result and click submit button to get the result.
Looking for your help... Thanks in advance.