I want to follow a link that contains $foo AND $bar.
I've tried this and it didn't work.
$mech->follow_link( url_regex => qr/$foo/i && url_regex => qr/$bar/i)
I want to follow a link that contains $foo AND $bar.
I've tried this and it didn't work.
$mech->follow_link( url_regex => qr/$foo/i && url_regex => qr/$bar/i)
Copyright © 2021 Jogjafile Inc.
You could write a regex that matches both subpatterns:
This uses two lookaheads that can match anywhere in the string, due to the
.*
prefix.Note that this is more inefficient, and that the matched substring will differ.