Skip to content Skip to sidebar Skip to footer

Why Does Xpath Select Nodes Outside Of Context Node?

I'm using XPath with Node.js and I have the following HTML document, where I want to select all article nodes and then in a second step all divs with class 'abc': ]"

with

".//div[@class='abc']"

or

"./div[@class='abc']"

as div is the direct child of article

Solution 2:

Andersson has already provided the correct direct answer to your question (+1), but here is just another option: You can combine your two XPaths into one: This XPath,

//article[0]/div[@class='abc']

will select the same div element as your two step process does.

You can even be more elaborate at any step in the path. This XPath will select the div elements with @class='abc' within article elements with a div child whose string value is 123456:

//article[div='123456']/div[@class='abc']

For the particular XML document shown, the predicate on article selects all articles, but this possibility for refinement exists in general.

Post a Comment for "Why Does Xpath Select Nodes Outside Of Context Node?"