in reply to Re^7: WWW::Mechanize::Firefox and dynamic pages
in thread WWW::Mechanize::Firefox and dynamic pages
Is there a way to make
content()look into frames? I added this to my code:
my @frames = $mech->expand_frames(); my $frame_ctr = 0; for ($frame_ctr = 0; $frame_ctr < @frames; $frame_ctr++) { printf("frames[%s] = %s\n", $frame_ctr, $frames[$frame_ctr]); }
But I'm not really sure what to do with the frames that were returned.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: WWW::Mechanize::Firefox and dynamic pages
by Corion (Patriarch) on Aug 01, 2013 at 06:52 UTC | |
by Special_K (Pilgrim) on Sep 21, 2013 at 06:44 UTC |