Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
749 views
in Technique[技术] by (71.8m points)

xml - If double slash (//) is used 2 times in XPath, what does it mean?

What does a double-slash used twice in an XPath selector mean?

Suppose I'm using a path like:

//div[@id='add']//span[@id=addone']
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A double slash "//" means any descendant node of the current node in the HTML tree which matches the locator.

A single slash "/" means a node which is a direct child of the current.

//div[@id='add']//span[@id=addone'] will match:

<div id="add">
  <div>
    <span id="addone">
  </div>
</div>

And:

<div id="add">
    <span id="addone">
</div>

//div[@id='add']/span[@id=addone'] will match only the second HTML tree.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...