in reply to Re^2: Parsing Links from .php
in thread Parsing Links from .php

There is no way to retrieve the content of each frame other than navigating to it. If you want to keep multiple frames "open" at the same time, just ->clone your WWW::Mechanize object(s) and navigate the clones to the respective frames. Also, you can visit a frame and then go ->back() to return to the page linking to the frame.

Replies are listed 'Best First'.
Re^4: Parsing Links from .php
by jdetloff (Acolyte) on Jan 12, 2010 at 07:33 UTC

    Thanks, that method worked out just great for me. I was able to navigate to the file I needed and download it. Thanks again!