in reply to Re: Scrape Select Options from Web Page
in thread Scrape Select Options from Web Page

This isn't working. I think, possibly because the page designer doesn't have an explicit <form> tag in the page.
  • Comment on Re^2: Scrape Select Options from Web Page

Replies are listed 'Best First'.
Re^3: Scrape Select Options from Web Page
by haukex (Archbishop) on Jun 06, 2018 at 21:35 UTC
    I think, possibly because the page designer doesn't have an explicit <form> tag in the page.

    Yes, it does appear that WWW::Mechanize requires the <form> tags to recognize inputs. By your reply to my other solution, I assume you've already figured out that you can feed the HTML to Mojo::DOM with e.g. my $dom = Mojo::DOM->new($mech->content);.