Subject: | find_link() et al should squawk on bad regexes |
More than a few times I've written this code:
$w->find_link( text_regex => /whatever/i );
instead of
$w->find_link( text_regex => qr/whatever/i );
If it's wanting a regex, it should complain if it's NOT a regex.