in reply to Re^4: Some issues with WWW::Mechanize::Firefox->xpath() method (xpath 1.0)
in thread Some issues with WWW::Mechanize::Firefox->xpath() method

For reference, WWW::Mechanize::Firefox uses document.evaluate() to execute an XPath query. I don't know how it relates to ->findNodes and ->find, but the return value will always be DOM nodes.

Javascript in MozRepl::RemoteObject:

... var xres = doc.evaluate(q,ref,null,XPathResult.ORDERED_NODE_SNAPSHOT_T +YPE, null ); ...