in reply to Scrape Select Options from Web Page
You could use one of the WWW::Mechanize backends that supports Javascript to trigger the download of the PDFs.
Also, you could look at what the ->current_form returns (a HTML::Form) and then look through the potential values of a field with the ->try_others method.
Personally, I would just extract the complete <select> HTML using (for example) HTML::TreeBuilder::XPath and query that tree.
|
|---|