in reply to WWW::Mechanize::Firefox Navigate Issue !
Using single quotes like you have in your example supresses variable substitution in Perl just like it does in bash. See what happens here:
my $bcount = 5; print "I ate $bcount biscuits "; print 'I ate $bcount biscuits ';
Use single quotes for literal strings, use double quotes for interpolation (including variable substitution.
|
|---|