Tag: XPath
式 | 説明 | 備考 |
//author | ドキュメント内の全てのauthor要素 | nodeがどの要素でも常にrootからとなるのに注意 |
./author | 現在のコンテキスト内の子author要素 | 現在のノードの直下 |
.//author | 現在のコンテキスト内の子author要素 | 現在のノードの子孫 |
「//」が起点からの要素と説明しているサイトもあるが、実際は常にrootからになるで注意が必要。
<div class="row">行1</div>
//div[@class='row']
<div class="row test">行</div>
//div[contains(@class, 'row')]