XPath in Nokogiri returns an empty array [], while I expect results

I am trying to parse XML files using Nokogiri, Ruby and XPath. I usually do not encounter any problem, but with the following I cannot make any xpath request:

doc = Nokogiri::HTML(open("myfile.xml"))
doc.("//Meta").count 
# result ==> 0

doc.xpath("//Meta") 
# result ==> []

doc.xpath(.).count
# result => 1

Here is a simplified version of my XML file

<Answer xmlns="test:com.test.search" context="hf%3D10%26target%3Dst0" last="0" estimated="false" nmatches="1" nslices="0" nhits="1" start="0">
  <time>
    ...
  </time>
  <promoted>
    ...
  </promoted>
  <hits>
    <Hit url="http://www.test.com/" source="test" collapsed="false" preferred="false" score="1254772" sort="0" mask="272" contentFp="4294967295" did="1287" slice="1">
      <groups>
        ...
      </groups>
      <metas>
        <Meta name="enligne">
          <MetaString name="value">
          </MetaString>
        </Meta>

        <Meta name="language">
          <MetaString name="value">
            fr
          </MetaString>
        </Meta>
        <Meta name="text">
          <MetaText name="value">
            <TextSeg highlighted="false" highlightClass="0">
              La
            </TextSeg>
          </MetaText>
        </Meta>
      </metas>
    </Hit>
  </hits>
  <keywords>
    ...
  </keywords>
  <groups>
    ...
  </groups>

How can I get all the children <Hit>from this XML?

+5
source share
3 answers

Include namespace information on call xpath:

doc.xpath("//x:Meta", "x" => "test:com.test.search")
+16
source

You can use the method remove_namespaces!and save your day.

+7
source

XPAth - " XPath ".

( "x" //x:Meta), :

//*[name() = 'Meta` and namespace-uri()='test:com.test.search']

, Meta , :

//*[name() = 'Meta`]
+1

All Articles