Fundamentals 6 min read

Master XPath: Essential Node Selection, Predicates, Axes, and Functions

This guide explains XPath fundamentals, covering node selection syntax, predicates for filtering, wildcard usage, combining multiple paths, axis navigation, and built‑in functions, providing clear examples for each to help developers efficiently query XML or HTML documents.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Master XPath: Essential Node Selection, Predicates, Axes, and Functions

Node Selection

nodename : selects all child nodes of the specified node, e.g., xpath('//div').

/ : selects from the root node, e.g., xpath('/div').

// : selects all matching nodes anywhere in the document, e.g., xpath('//div').

. : selects the current node, e.g., xpath('./div').

.. : selects the parent of the current node, e.g., xpath('..').

@ : selects an attribute, e.g., xpath('//@class').

Predicates

xpath('/body/div[1]')

– selects the first div under body. xpath('/body/div[last()]') – selects the last div under body. xpath('/body/div[last()-1]') – selects the second‑last div under body. xpath('/body/div[position()<3]') – selects the first two div elements. xpath('/body/div[@class]') – selects div elements that have a class attribute. xpath('/body/div[@class="main"]') – selects div elements whose class equals “main”. xpath('/body/div[price>35.00]') – selects div elements whose price child value is greater than 35.

Wildcards

xpath('/div/*')

– selects all child nodes of a div. xpath('/div[@*]') – selects all div elements that have any attribute.

Multiple Paths

xpath('//div|//table')

– selects all div and table nodes.

XPath Axes

ancestor : xpath('./ancestor::*') – all ancestor nodes of the current node.

ancestor-or-self : xpath('./ancestor-or-self::*') – ancestors plus the node itself.

attribute : xpath('./attribute::*') – all attributes of the current node.

child : xpath('./child::*') – all child nodes.

descendant : xpath('./descendant::*') – all descendant nodes.

following : xpath('./following::*') – nodes after the current node’s end tag.

following-sibling : xpath('./following-sibling::*') – sibling nodes after the current node.

parent : xpath('./parent::*') – the parent node.

preceding : xpath('./preceding::*') – nodes before the current node’s start tag.

preceding-sibling : xpath('./preceding-sibling::*') – sibling nodes before the current node.

self : xpath('./self::*') – the current node itself.

Functions

starts-with : xpath('//div[starts-with(@id,"ma")]') – selects div elements whose id starts with “ma”.

contains : xpath('//div[contains(@id,"ma")]') – selects div elements whose id contains “ma”.

and : xpath('//div[contains(@id,"ma") and contains(@id,"in")]') – selects div elements whose id contains both “ma” and “in”.

text() : xpath('//div[contains(text(),"ma")]') – selects div elements whose text contains “ma”.

For more details, see the Scrapy XPath documentation: http://doc.scrapy.org/en/0.14/topics/selectors.html

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

XMLData ExtractionXPathSelectors
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.