Vishwanath Chitnis wrote:
> ok, here is the code:
>
> $webserver=apache1;
> $platform=solaris;
> $uname=abc123;
> $password=abc123;

Missed the quotes ??
$webserver = "apache1" ;


>
> my $ie = Win32::IEAutomation->new(visible=>1,maximized=>1);
>
> if ($webserver == apache1 && $platform == solaris){

if ( $webserver eq "apache1" .... ) { .... }

HTH
Mug

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to