in reply to Perl code is not lunching my firefox browser

Looking at the WWW::Selenium documentation, it seems that it wants a whitespace-delimited command:

my $where_firefox_lives = "C:\\Program Files\\Mozilla Firefox\\firefox +.exe"; ... browser => "firefox3 $where_firefox_lives", ...

Replies are listed 'Best First'.
Re^2: Perl code is not lunching my firefox browser
by patricklee (Novice) on Jan 24, 2011 at 18:14 UTC

    Thank you this worked out great. I corrected the path name to Program Files (86)\\Mozilla Firefox\\firefox.exe. The browser will not launch when I compile the program. Thanks again I really appreciate this.