So I use Mechanize to fetch a list of forms for a page. The form identification can vary for websites, so I need something more stable, such as a selector.
Is there a way I can use a simple CSS selector to pick the right form from a list of forms provided by Mechanize?
Yes. The page object returned by Mechanize is a Nokogiri document so you can use all of Nokogiri's methods to find a node in the DOM.
search
andat
are the generic methods, and both take either CSS or XPath selectors.at
is equivalent tosearch('some selector').first
. I use those two for the vast majority of times I need to find a node. There are alsocss
andxpath
which are selector-type specific and theirat
equivalents ofat_css
andat_xpath
.Consider this code:
This example gets the page's
<title>
but you can easily interpolate how to get a particular form from the DOM you're working with from this.