🚀 We are hiring! See open positions

How to select any element using wildcard in XPath?

by scrapecrow Apr 19, 2023

To select elements of any name the wildcard character * can be used:

<article> <h1>title</h1> <p>paragraph</p> <a>link</a> </article>

Wildcard character functions just like any other axis selector and can have predicates and filters applied to it.
For example, we can restrict our wildcard option to a list of names using the name() function:

<article> <h1>title</h1> <p>paragraph</p> <a>link</a> </article>

Related Articles